You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently, I've noticed that starting the browser version of Theia takes a long time to load on Firefox. I did a reload under the profiler and a lot of time seems to be spent parsing css. The call stack involves setting the innerText of a html element from a method called updateStyle. The only code in Theia that seems to qualify for this is PluginIconService.updateStyle() which is called from the PluginContributionHandler to register icons. This makes sense, since I have the gitlens plugin installed, which registers a bunch of icons.
Steps to Reproduce:
Install gitlens
yarn browser start
Open "localhost:3000" in Firefox.
Additional Information
Operating System:
Theia Version:
The text was updated successfully, but these errors were encountered:
Bug Description:
Recently, I've noticed that starting the browser version of Theia takes a long time to load on Firefox. I did a reload under the profiler and a lot of time seems to be spent parsing css. The call stack involves setting the
innerText
of a html element from a method calledupdateStyle
. The only code in Theia that seems to qualify for this isPluginIconService.updateStyle()
which is called from the PluginContributionHandler to register icons. This makes sense, since I have the gitlens plugin installed, which registers a bunch of icons.Steps to Reproduce:
yarn browser start
Additional Information
The text was updated successfully, but these errors were encountered: