mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix(web): Update prompt (#10237)
* update * update * update * npm run format:fix
This commit is contained in:
parent
9000ce4283
commit
c1a5ed3526
2 changed files with 4 additions and 2 deletions
|
|
@ -55,7 +55,7 @@
|
|||
|
||||
if (selectedPeople.length >= 5) {
|
||||
notificationController.show({
|
||||
message: 'You can only merge up to 5 faces at a time',
|
||||
message: $t('merge_people_limit'),
|
||||
type: NotificationType.Info,
|
||||
});
|
||||
return;
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
const handleMerge = async () => {
|
||||
const isConfirm = await dialogController.show({
|
||||
id: 'merge-people',
|
||||
prompt: 'Do you want to merge these people?',
|
||||
prompt: $t('merge_people_prompt'),
|
||||
});
|
||||
|
||||
if (!isConfirm) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue