We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1cf4b commit 73de22aCopy full SHA for 73de22a
src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts
@@ -219,6 +219,11 @@ export class GettingStartedPage extends EditorPane {
219
if (!ourStep) {
220
throw Error('Could not find step with ID: ' + step.id);
221
}
222
+
223
+ if (!ourStep.done && category.content.stepsComplete === category.content.stepsTotal - 1) {
224
+ this.hideCategory(category.id);
225
+ }
226
227
ourStep.done = step.done;
228
if (category.id === this.currentCategory?.id) {
229
const badgeelements = assertIsDefined(document.querySelectorAll(`[data-done-step-id="${step.id}"]`));
0 commit comments