mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
11 lines
213 B
Svelte
11 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}
|