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 74d1f59 commit 6e45786Copy full SHA for 6e45786
src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts
@@ -251,10 +251,12 @@ registerAction2(class extends Action2 {
251
quickPick.hide();
252
});
253
quickPick.onDidHide(() => quickPick.dispose());
254
- quickPick.show();
255
await extensionService.whenInstalledExtensionsRegistered();
+ gettingStartedService.onDidAddWalkthrough(async () => {
256
+ quickPick.items = await this.getQuickPickItems(contextService, gettingStartedService);
257
+ });
258
+ quickPick.show();
259
quickPick.busy = false;
- quickPick.items = await this.getQuickPickItems(contextService, gettingStartedService);
260
}
261
262
0 commit comments