From ff19cd0107fbf30b91bab2d199570e0236f29aec Mon Sep 17 00:00:00 2001 From: CJPeckover Date: Sun, 23 Nov 2025 21:01:33 -0500 Subject: [PATCH] update new Timeline with albumUsers --- web/src/lib/components/timeline/Timeline.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/lib/components/timeline/Timeline.svelte b/web/src/lib/components/timeline/Timeline.svelte index 0a209fcde3..4d7d7e85c5 100644 --- a/web/src/lib/components/timeline/Timeline.svelte +++ b/web/src/lib/components/timeline/Timeline.svelte @@ -48,6 +48,7 @@ showArchiveIcon?: boolean; isShared?: boolean; album?: AlbumResponseDto | null; + albumUsers?: UserResponseDto[]; person?: PersonResponseDto | null; isShowDeleteConfirmation?: boolean; onSelect?: (asset: TimelineAsset) => void; @@ -80,6 +81,7 @@ showArchiveIcon = false, isShared = false, album = null, + albumUsers = [], person = null, isShowDeleteConfirmation = $bindable(false), onSelect = () => {}, @@ -657,6 +659,7 @@ {isSelectionMode} {singleSelect} {monthGroup} + {albumUsers} onSelect={({ title, assets }) => handleGroupSelect(timelineManager, title, assets)} onSelectAssetCandidates={handleSelectAssetCandidates} onSelectAssets={handleSelectAssets}