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 21ea885 commit 6b71998Copy full SHA for 6b71998
src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts
@@ -613,7 +613,7 @@ export class GettingStartedPage extends EditorPane {
613
const progressAmount = assertIsDefined(progress.querySelector('.progress-bar-inner') as HTMLDivElement).style.width;
614
if (!toFocus && progressAmount !== '100%') { toFocus = assertIsDefined(progress.parentElement?.parentElement); }
615
});
616
- (toFocus ?? assertIsDefined(this.container.querySelector('button.skip')) as HTMLButtonElement).focus();
+ (toFocus ?? assertIsDefined(this.container.querySelector('button.getting-started-category')) as HTMLButtonElement)?.focus();
617
}
618
619
private setSlide(toEnable: 'details' | 'categories') {
0 commit comments