mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
feat(web): Change relink person icon from minus to pencil (#13536)
The relink person icon is currently a minus symbol. This can be confusing as it looks like a "remove person" button. Changing it to a pencil makes it clear it is an editing operation, not a removing operation. I don't know how to write Dart code, so I cannot help with the Mobile app.
This commit is contained in:
parent
3d971f69dc
commit
d9949434f6
1 changed files with 2 additions and 3 deletions
|
@ -15,9 +15,8 @@
|
||||||
type AssetFaceResponseDto,
|
type AssetFaceResponseDto,
|
||||||
type PersonResponseDto,
|
type PersonResponseDto,
|
||||||
} from '@immich/sdk';
|
} from '@immich/sdk';
|
||||||
import { mdiAccountOff } from '@mdi/js';
|
|
||||||
import Icon from '$lib/components/elements/icon.svelte';
|
import Icon from '$lib/components/elements/icon.svelte';
|
||||||
import { mdiArrowLeftThin, mdiMinus, mdiRestart } from '@mdi/js';
|
import { mdiAccountOff, mdiArrowLeftThin, mdiPencil, mdiRestart } from '@mdi/js';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { linear } from 'svelte/easing';
|
import { linear } from 'svelte/easing';
|
||||||
import { fly } from 'svelte/transition';
|
import { fly } from 'svelte/transition';
|
||||||
|
@ -297,7 +296,7 @@
|
||||||
{:else}
|
{:else}
|
||||||
<CircleIconButton
|
<CircleIconButton
|
||||||
color="primary"
|
color="primary"
|
||||||
icon={mdiMinus}
|
icon={mdiPencil}
|
||||||
title={$t('select_new_face')}
|
title={$t('select_new_face')}
|
||||||
size="18"
|
size="18"
|
||||||
padding="1"
|
padding="1"
|
||||||
|
|
Loading…
Reference in a new issue