Skip to content

Commit

Permalink
Fix for walkthrough and show welcome dependency. (Azure#931)
Browse files Browse the repository at this point in the history
Co-authored-by: Tatsat Mishra <tatsat.mishra@microsoft.com>
  • Loading branch information
Tatsinnit and Tatsat Mishra authored Sep 20, 2024
1 parent 0c016fd commit be0f7aa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@ export async function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(uiExtensionVariables.outputChannel);

registerUIExtensionVariables(uiExtensionVariables);
vscode.commands.executeCommand("workbench.action.openWalkthrough", {
category: "ms-kubernetes-tools.vscode-aks-tools#aksvscodewalkthrough",
});
if (vscode.workspace.getConfiguration("workbench").get("startupEditor") !== "none") {
vscode.commands.executeCommand("workbench.action.openWalkthrough", {
category: "ms-kubernetes-tools.vscode-aks-tools#aksvscodewalkthrough",
});
}
registerCommandWithTelemetry("aks.signInToAzure", signInToAzure);
registerCommandWithTelemetry("aks.selectTenant", selectTenant);
registerCommandWithTelemetry("aks.selectSubscriptions", selectSubscriptions);
Expand Down

0 comments on commit be0f7aa

Please sign in to comment.