mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
10 lines
213 B
Svelte
10 lines
213 B
Svelte
<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}
|