mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): download from shared album link (#7227)
* fix(web): download in album shared link * chore: e2e test
This commit is contained in:
parent
7158706296
commit
7f5459f050
4 changed files with 66 additions and 8 deletions
|
|
@ -99,9 +99,9 @@
|
|||
</script>
|
||||
|
||||
<header>
|
||||
{#if $isMultiSelectState && user}
|
||||
{#if $isMultiSelectState}
|
||||
<AssetSelectControlBar
|
||||
ownerId={user.id}
|
||||
ownerId={user?.id}
|
||||
assets={$selectedAssets}
|
||||
clearSelect={() => assetInteractionStore.clearMultiselect()}
|
||||
>
|
||||
|
|
@ -142,11 +142,11 @@
|
|||
<AssetGrid {album} {assetStore} {assetInteractionStore}>
|
||||
<section class="pt-24">
|
||||
<!-- ALBUM TITLE -->
|
||||
<p
|
||||
<h1
|
||||
class="bg-immich-bg text-6xl text-immich-primary outline-none transition-all dark:bg-immich-dark-bg dark:text-immich-dark-primary"
|
||||
>
|
||||
{album.albumName}
|
||||
</p>
|
||||
</h1>
|
||||
|
||||
<!-- ALBUM SUMMARY -->
|
||||
{#if album.assetCount > 0}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue