Skip to content

Commit d56d2c8

Browse files
authored
Change "Delete Secret..." command confirmation message (#510)
* Change delete confirm message * Change wording
1 parent 740e086 commit d56d2c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/secret/deleteSecret/SecretDeleteConfirmStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import type { ISecretContext } from "../ISecretContext";
1010
export class SecretDeleteConfirmStep extends AzureWizardPromptStep<ISecretContext> {
1111
public async prompt(context: ISecretContext): Promise<void> {
1212
await context.ui.showWarningMessage(
13-
localize('secretDeleteWarning', 'Are you sure you want to delete secret "{0}"?', nonNullProp(context, 'secretName')),
13+
localize('secretDeleteWarning', 'Are you sure you want to delete secret "{0}"? Restarting revisions that use it will fail once the secret is deleted.', nonNullProp(context, 'secretName')),
1414
{ modal: true },
1515
{ title: localize('delete', 'Delete') }
1616
);

0 commit comments

Comments
 (0)