Skip to content

Commit

Permalink
Change cancel button to close and add period to end (#9047)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyprain-okeke committed May 5, 2024
1 parent 77d854b commit 4877f08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -7961,8 +7961,8 @@
}
}
},
"deleteProviderWarningDesc": {
"message": "You must unlink all clients before you can delete $ID$",
"deleteProviderWarningDescription": {
"message": "You must unlink all clients before you can delete $ID$.",
"placeholders": {
"id": {
"content": "$1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ export class AccountComponent {
if (providerClients.data != null && providerClients.data.length > 0) {
await this.dialogService.openSimpleDialog({
title: { key: "deleteProviderName", placeholders: [this.provider.name] },
content: { key: "deleteProviderWarningDesc", placeholders: [this.provider.name] },
content: { key: "deleteProviderWarningDescription", placeholders: [this.provider.name] },
acceptButtonText: { key: "ok" },
cancelButtonText: { key: "close" },
type: "danger",
});

Expand Down

0 comments on commit 4877f08

Please sign in to comment.