1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-28 06:32:44 +01:00

correct prob drilling

This commit is contained in:
Alex 2024-12-11 11:44:54 -06:00
parent 555fea58f4
commit d6c4fccbc6
No known key found for this signature in database
GPG key ID: 53CD082B3A5E1082
2 changed files with 3 additions and 3 deletions
web/src/lib/components/photos-page

View file

@ -20,7 +20,7 @@
export let singleSelect = false; export let singleSelect = false;
export let withStacked = false; export let withStacked = false;
export let showArchiveIcon = false; export let showArchiveIcon = false;
export let showUserThumbnailsinViewer = true; export let showOwnerAvatar = true;
export let assetGridElement: HTMLElement | undefined = undefined; export let assetGridElement: HTMLElement | undefined = undefined;
export let renderThumbsAtBottomMargin: string | undefined = undefined; export let renderThumbsAtBottomMargin: string | undefined = undefined;
export let renderThumbsAtTopMargin: string | undefined = undefined; export let renderThumbsAtTopMargin: string | undefined = undefined;
@ -208,7 +208,7 @@
onRetrieveElement={(element) => onRetrieveElement(dateGroup, asset, element)} onRetrieveElement={(element) => onRetrieveElement(dateGroup, asset, element)}
showStackedIcon={withStacked} showStackedIcon={withStacked}
{showArchiveIcon} {showArchiveIcon}
{showUserThumbnailsinViewer} {showOwnerAvatar}
{asset} {asset}
{groupIndex} {groupIndex}
onClick={(asset) => onClick(dateGroup.assets, dateGroup.groupTitle, asset)} onClick={(asset) => onClick(dateGroup.assets, dateGroup.groupTitle, asset)}

View file

@ -890,7 +890,7 @@
renderThumbsAtBottomMargin={THUMBNAIL_INTERSECTION_ROOT_BOTTOM} renderThumbsAtBottomMargin={THUMBNAIL_INTERSECTION_ROOT_BOTTOM}
{withStacked} {withStacked}
{showArchiveIcon} {showArchiveIcon}
{showUserThumbnailsinViewer} {showOwnerAvatar}
{assetStore} {assetStore}
{assetInteractionStore} {assetInteractionStore}
{isSelectionMode} {isSelectionMode}