We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e3522a commit 7272016Copy full SHA for 7272016
packages/app/src/app/overmind/effects/vscode/Workbench.ts
@@ -372,14 +372,16 @@ export class Workbench {
372
},
373
});
374
375
- this.appendMenuItem(MenuId.EditorContext, {
376
- group: '0_comments',
377
- order: 0,
378
- command: {
379
- id: 'comments.add',
380
- title: 'Add code comment...',
381
- },
382
- });
+ if (COMMENTS) {
+ this.appendMenuItem(MenuId.EditorContext, {
+ group: '0_comments',
+ order: 0,
+ command: {
+ id: 'comments.add',
+ title: 'Add code comment...',
+ },
383
+ });
384
+ }
385
}
386
387
private addWorkbenchAction({
0 commit comments