Skip to content

Commit ec291c1

Browse files
authored
Fix opening welcome page from Help menu (microsoft#204215)
1 parent 7cc0427 commit ec291c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ registerAction2(class extends Action2 {
6464
const selectedStep = typeof walkthroughID === 'string' ? undefined : walkthroughID.step;
6565

6666
// We're trying to open the welcome page from the Help menu
67-
if (!selectedCategory || !selectedStep) {
67+
if (!selectedCategory && !selectedStep) {
6868
editorService.openEditor({ resource: GettingStartedInput.RESOURCE });
6969
return;
7070
}

0 commit comments

Comments
 (0)