diff --git a/web/src/routes/(user)/folders/[[photos=photos]]/[[assetId=id]]/+page.svelte b/web/src/routes/(user)/folders/[[photos=photos]]/[[assetId=id]]/+page.svelte index 59220b9113..97c1bfafdf 100644 --- a/web/src/routes/(user)/folders/[[photos=photos]]/[[assetId=id]]/+page.svelte +++ b/web/src/routes/(user)/folders/[[photos=photos]]/[[assetId=id]]/+page.svelte @@ -16,6 +16,7 @@ import DeleteAssets from '$lib/components/timeline/actions/DeleteAssetsAction.svelte'; import DownloadAction from '$lib/components/timeline/actions/DownloadAction.svelte'; import FavoriteAction from '$lib/components/timeline/actions/FavoriteAction.svelte'; + import SetVisibilityAction from '$lib/components/timeline/actions/SetVisibilityAction.svelte'; import TagAction from '$lib/components/timeline/actions/TagAction.svelte'; import AssetSelectControlBar from '$lib/components/timeline/AssetSelectControlBar.svelte'; import SkipLink from '$lib/elements/SkipLink.svelte'; @@ -60,6 +61,10 @@ await invalidateAll(); }; + const handleSetVisibility = () => { + void triggerAssetUpdate(); + }; + const handleSelectAllAssets = () => { if (!data.pathAssets) { return; @@ -143,6 +148,7 @@ + {#if $preferences.tags.enabled && assetMultiSelectManager.isAllUserOwned} {/if}