Skip to content

Commit bba3f38

Browse files
authored
Improve workspace update confirmation to clarify restart consequence (#792)
1 parent c2e8aaa commit bba3f38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,9 @@ export class Commands {
598598
modal: true,
599599
detail: `Update ${createWorkspaceIdentifier(this.workspace)} to the latest version?\n\nUpdating will restart your workspace which stops any running processes and may result in the loss of unsaved work.`,
600600
},
601-
"Update",
601+
"Update and Restart",
602602
);
603-
if (action === "Update") {
603+
if (action === "Update and Restart") {
604604
await this.remoteWorkspaceClient.updateWorkspaceVersion(this.workspace);
605605
}
606606
}

0 commit comments

Comments
 (0)