Skip to content

Commit

Permalink
[Fix] WorkspaceFrontendContribution is not binded to frontendApplication
Browse files Browse the repository at this point in the history
  • Loading branch information
DoroNahari committed Nov 9, 2020
1 parent 632a67a commit 1b41cc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default new ContainerModule((bind: interfaces.Bind, unbind: interfaces.Un
}).inSingletonScope();

bind(WorkspaceFrontendContribution).toSelf().inSingletonScope();
for (const identifier of [CommandContribution, KeybindingContribution, MenuContribution]) {
for (const identifier of [FrontendApplicationContribution, CommandContribution, KeybindingContribution, MenuContribution]) {
bind(identifier).toService(WorkspaceFrontendContribution);
}

Expand Down

0 comments on commit 1b41cc7

Please sign in to comment.