mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
refactor(web): use derived instead of get(t) (#10884)
This commit is contained in:
parent
6791af8c2c
commit
3cd187dced
6 changed files with 16 additions and 18 deletions
|
|
@ -236,7 +236,7 @@
|
|||
shadow
|
||||
url={getPeopleThumbnailUrl(selectedPersonToReassign[face.id])}
|
||||
altText={selectedPersonToReassign[face.id].name}
|
||||
title={getPersonNameWithHiddenValue(
|
||||
title={$getPersonNameWithHiddenValue(
|
||||
selectedPersonToReassign[face.id].name,
|
||||
selectedPersonToReassign[face.id]?.isHidden,
|
||||
)}
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
shadow
|
||||
url={getPeopleThumbnailUrl(face.person)}
|
||||
altText={face.person.name}
|
||||
title={getPersonNameWithHiddenValue(face.person.name, face.person.isHidden)}
|
||||
title={$getPersonNameWithHiddenValue(face.person.name, face.person.isHidden)}
|
||||
widthStyle={thumbnailWidth}
|
||||
heightStyle={thumbnailWidth}
|
||||
hidden={face.person.isHidden}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue