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
if two plugins all frontend plugins,at first plugin load host = "frontend", plugin.host = "main", dynamicContributions = hostContributions.get("main"),
but dynamicContributions which load from main will set to host which is frontend .
when load second plugin, dynamicContributions will load from main and it will lead to dynamicContributions = [], i think it should load from forntend,Otherwise first plugin will be overwrite
Additional Information
Theia Version: since 1.13.0
The text was updated successfully, but these errors were encountered:
Bug Description:
Theia frontend plugin can start one at the same time.
Steps to Reproduce:
--plugins=local-dir:path/to/dir
Started plugin
,the second plugin will be overwritedThere seems a bug here
if two plugins all frontend plugins,at first plugin load
host = "frontend"
,plugin.host = "main"
,dynamicContributions = hostContributions.get("main")
,but
dynamicContributions
which load frommain
will set tohost
which isfrontend
.when load second plugin,
dynamicContributions
will load frommain
and it will lead todynamicContributions = []
, i think it should load fromforntend
,Otherwise first plugin will be overwriteAdditional Information
The text was updated successfully, but these errors were encountered: