From 4efeac64796da723acbd24082b2adee91ba10388 Mon Sep 17 00:00:00 2001 From: WofWca Date: Sun, 27 Oct 2024 18:16:26 +0400 Subject: [PATCH] improvement: change button label Follow-up to https://github.com/deltachat/deltachat-desktop/pull/4271 Closes https://github.com/deltachat/deltachat-desktop/issues/4182 --- CHANGELOG.md | 2 +- .../src/components/dialogs/EditAccountAndPasswordDialog.tsx | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca479de7cd..d1b2d54a32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ - revert debian packagename from `deltachat` back to `deltachat-desktop` #4266 - style: fix VCard color being too bright in dark theme #4255 - remove unnecessary horizontal scrollbar in "View Group" dialog #4254 -- change title of EditAccountAndPasswordDialog to make it clearer that it is about email account #4271 +- change title and button label of EditAccountAndPasswordDialog to make it clearer that it is about email account #4271, #4279 - fix styling of progressbars in light theme #4274 - fix not being able to remove avatar for a mailing list #4270 diff --git a/packages/frontend/src/components/dialogs/EditAccountAndPasswordDialog.tsx b/packages/frontend/src/components/dialogs/EditAccountAndPasswordDialog.tsx index f5d7b766a4..824e62f8b4 100644 --- a/packages/frontend/src/components/dialogs/EditAccountAndPasswordDialog.tsx +++ b/packages/frontend/src/components/dialogs/EditAccountAndPasswordDialog.tsx @@ -134,7 +134,11 @@ function EditAccountInner(onClose: DialogProps['onClose']) { )} - onClose()} onOk={onOk} /> + onClose()} + onOk={onOk} + confirmLabel={tx('login_title')} + /> ) }