Skip to content

Commit 598e4be

Browse files
committed
Do not require a group in contributed command
1 parent 73b3432 commit 598e4be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
113113
}
114114
const commands = new Map((extension.description.contributes?.commands ?? []).map(c => [c.command, c]));
115115
for (const contribution of extension.value) {
116-
if (!contribution.command || !contribution.group || !contribution.when) {
116+
if (!contribution.command || !contribution.when) {
117117
continue;
118118
}
119119
const fullCommand = commands.get(contribution.command);

0 commit comments

Comments
 (0)