Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix AddChat title to 'menu_new_group' #4129

Merged
merged 2 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- dev: update `./bin/update_background_thumbnails.sh` script
- fix chatlist image thumbnails #4101
- fix: spacing around avatars in reaction details dialog #4114
- fix: wrong translation string for new group creation #4126
- fix: packaging: windows 64bit and 32bit releases now have different filenames, bring back 64bit windows releases. #4131

<a id="1_46_8"></a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function CreateChat(props: DialogProps) {
{viewMode == 'main' && <CreateChatMain {...{ setViewMode, onClose }} />}
{viewMode == 'createGroup' && (
<>
<DialogHeader title={tx('clone_chat')} />
<DialogHeader title={tx('menu_new_group')} />
<CreateGroup {...{ setViewMode, onClose }} />
</>
)}
Expand Down
Loading