eclipse-emfcloud/coffee-editor

Project explorer icons are missing in docker build

sgraband opened this issue · 3 comments

MissingIcons

In the normal browser build everything seems to be fine.

The default file icon theme is 'none', since there are no user settings available we don't show icons in a new session.
Can be fixed by adding the following setting to the workspace settings:

{
    ...
    "workbench.iconTheme": "theia-file-icons"
}

Seems like there even is an an option to define this in the application package.json:
eclipse-theia/theia#11890 (reply in thread)

Seems like there even is an an option to define this in the application package.json: eclipse-theia/theia#11890 (reply in thread)

Yes that's true, we should then decide which way we want to define such defaults - either in the package.json directory or in the existing workspace settings. For example we have an existing workspace settings to disable auto save preference.