Skip to content

Commit 720985f

Browse files
authored
1 parent 8978118 commit 720985f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extensions/github/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"command": "github.openOnVscodeDev",
5555
"when": "github.hasGitHubRepo",
5656
"qualifiedName": "Continue Working in vscode.dev",
57-
"group": "Remote Repositories",
57+
"category": "Remote Repositories",
5858
"remoteGroup": "virtualfs_44_vscode-vfs_2_web@2"
5959
}
6060
],

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
800800
));
801801

802802
if (contribution.qualifiedName) {
803-
this.generateStandaloneOptionCommand(command.id, contribution.qualifiedName, contribution.group ?? command.category, when, contribution.remoteGroup);
803+
this.generateStandaloneOptionCommand(command.id, contribution.qualifiedName, contribution.category ?? command.category, when, contribution.remoteGroup);
804804
}
805805
}
806806
}
@@ -988,6 +988,7 @@ interface ICommand {
988988
when: string;
989989
documentation?: string;
990990
qualifiedName?: string;
991+
category?: string;
991992
remoteGroup?: string;
992993
}
993994

0 commit comments

Comments
 (0)