1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

fix(web): fix add to album modal text spacing (#9606)

* fix(web): fix add to album modal text spacing

* Fix formatting
This commit is contained in:
Snowknight26 2024-05-20 07:20:08 -05:00 committed by GitHub
parent 451416ec88
commit 39129721fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,8 +50,7 @@
{#if variant === 'simple'}
<span>{album.shared ? 'Shared' : ''}</span>
{:else}
<span>{album.assetCount} items</span>
<span>{album.shared ? ' · Shared' : ''} </span>
<span>{album.assetCount} items{album.shared ? ' - Shared' : ''}</span>
{/if}
</span>
</div>