StackStorm/st2flow

Header Logo wrong path

Closed this issue · 3 comments

Somewhere in recent st2flow builds we've broken the path to the logo displayed in the top left

image

It is trying to load image from static/logo-extreme.svg, which typically maps to something like https://10.10.10.10/flow/static/logo-extreme.svg

We don't ship that file at that location. We do ship it img/logo-extreme.svg - we could use that instead.

Looking at slightly older packages like st2flow-3.0dev-32, they include these files:

/opt/stackstorm/static/webui/flow/static/logo.svg
/opt/stackstorm/static/webui/flow/static/logo-extreme.svg
/opt/stackstorm/static/webui/flow/static/icon.png
/opt/stackstorm/static/webui/flow/static/favicon.ico

From 3.0dev-33 onwards, we don't include those any more. Something got changed as part of build updates.

Yeah, unified build system to keep the differences between st2web/flow down. File is now brought in from here: https://github.com/StackStorm/st2web/blob/master/tasks/settings.json#L16-L22 - will look at adding it there and if there's any side effects.