Skip to content

Commit

Permalink
fix: wrong notification message after deleted API Operation
Browse files Browse the repository at this point in the history
  • Loading branch information
blackchoey committed Jan 20, 2025
1 parent 2aee966 commit 59e5bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/explorer/ApiOperationTreeItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class ApiOperationTreeItem extends AzExtParentTreeItem {
await this.root.client.apiOperation.delete(this.root.resourceGroupName, this.root.serviceName, this.root.apiName, this.root.opName, '*');
});
// don't wait
window.showInformationMessage(localize("deletedOperation", `Successfully deleted API "${this.root.apiName}".`));
window.showInformationMessage(localize("deletedOperation", `Successfully deleted API Operation "${this.root.opName}".`));

} else {
throw new UserCancelledError();
Expand Down

0 comments on commit 59e5bc7

Please sign in to comment.