From 4f817a8922eb03500dd9171cf32efde82efccc95 Mon Sep 17 00:00:00 2001 From: blackchoey Date: Mon, 20 Jan 2025 11:43:34 +0800 Subject: [PATCH] fix: wrong notification message after deleted API Operation --- src/explorer/ApiOperationTreeItem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/explorer/ApiOperationTreeItem.ts b/src/explorer/ApiOperationTreeItem.ts index b9568ca..c702b65 100644 --- a/src/explorer/ApiOperationTreeItem.ts +++ b/src/explorer/ApiOperationTreeItem.ts @@ -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();