refactor(web): refactor album selection modal and album summary component (#9658)

This commit is contained in:
Snowknight26 2024-05-22 00:15:28 -05:00 committed by GitHub
parent 61b850f0ce
commit a341ab0050
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 24 additions and 20 deletions

View file

@ -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}