Skip to content

Commit

Permalink
fix: typo in notification message
Browse files Browse the repository at this point in the history
  • Loading branch information
blackchoey committed Jan 20, 2025
1 parent 4689847 commit c87114d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/explorer/editors/arm/BaseArmResourceEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export abstract class BaseArmResourceEditor<TRoot extends IServiceTreeRoot> exte
const payload = JSON.parse(data);
const response = await this.updateDataInternal(context, payload);
//await context.refresh();
window.showInformationMessage(localize("updateSucceded", `Changes to ${this.entityType} were succefully uploaded to cloud.`));
window.showInformationMessage(localize("updateSucceded", `Changes to ${this.entityType} were successfully uploaded to cloud.`));
return JSON.stringify(response, null, "\t");
} catch (error) {
throw new Error(processError(error, localize("updateFailed", `Changes to ${this.entityType} could not be uploaded to cloud.`)));
Expand Down
2 changes: 1 addition & 1 deletion src/explorer/editors/openApi/OpenApiEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class OpenApiEditor extends Editor<ApiTreeItem> {
},
async () => context.root.client.api.beginCreateOrUpdateAndWait(context.root.resourceGroupName, context.root.serviceName, context.root.apiName, payload)
).then(async () => {
window.showInformationMessage(localize("updateOpenApiSucceded", `Changes to API '${context.apiContract.name}' were succefully uploaded to cloud.`));
window.showInformationMessage(localize("updateOpenApiSucceded", `Changes to API '${context.apiContract.name}' were successfully uploaded to cloud.`));
//await context.refresh();
return this.getData(context);
});
Expand Down

0 comments on commit c87114d

Please sign in to comment.