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 7cc0427 commit ec291c1Copy full SHA for ec291c1
src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts
@@ -64,7 +64,7 @@ registerAction2(class extends Action2 {
64
const selectedStep = typeof walkthroughID === 'string' ? undefined : walkthroughID.step;
65
66
// We're trying to open the welcome page from the Help menu
67
- if (!selectedCategory || !selectedStep) {
+ if (!selectedCategory && !selectedStep) {
68
editorService.openEditor({ resource: GettingStartedInput.RESOURCE });
69
return;
70
}
0 commit comments