Skip to content

Commit

Permalink
improvement: change button label
Browse files Browse the repository at this point in the history
Follow-up to #4271
Closes #4182
  • Loading branch information
WofWca committed Oct 27, 2024
1 parent 2529adf commit 4efeac6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ function EditAccountInner(onClose: DialogProps['onClose']) {
)}
</DialogContent>
</DialogBody>
<OkCancelFooterAction onCancel={() => onClose()} onOk={onOk} />
<OkCancelFooterAction
onCancel={() => onClose()}
onOk={onOk}
confirmLabel={tx('login_title')}
/>
</>
)
}

0 comments on commit 4efeac6

Please sign in to comment.