From 8e8a2f997e9a32420313159dba34c94c023b8d56 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Aref Date: Mon, 5 Jan 2026 13:31:23 +0200 Subject: [PATCH] feat: show asset owners for editors in shared albums (#24890) --- .../[[assetId=id]]/+page.svelte | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte b/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte index 3f4d3dd39f..a2a9169864 100644 --- a/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte +++ b/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte @@ -652,7 +652,7 @@ /> {/if} - {#if isOwned} + {#if isOwned || containsEditors} timelineManager.toggleShowAssetOwners()} /> {/if} - {#if album.assetCount > 0} + {#if isOwned && album.assetCount > 0} {/if} - handleDeleteAlbum(album)} - /> + {#if isOwned} + handleDeleteAlbum(album)} + /> + {/if} {/if}