mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
refactor(web): refactor album selection modal and album summary component (#9658)
This commit is contained in:
parent
61b850f0ce
commit
a341ab0050
5 changed files with 24 additions and 20 deletions
|
|
@ -0,0 +1,10 @@
|
|||
<script lang="ts">
|
||||
import type { AlbumResponseDto } from '@immich/sdk';
|
||||
|
||||
export let album: AlbumResponseDto;
|
||||
</script>
|
||||
|
||||
<span>{album.assetCount} items</span>
|
||||
{#if album.shared}
|
||||
<span>• Shared</span>
|
||||
{/if}
|
||||
Loading…
Add table
Add a link
Reference in a new issue