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

@ -89,7 +89,7 @@
{#if !shared && search.length === 0}
<p class="px-5 py-3 text-xs">RECENT</p>
{#each recentAlbums as album (album.id)}
<AlbumListItem variant="simple" {album} on:album={() => handleSelect(album)} />
<AlbumListItem {album} on:album={() => handleSelect(album)} />
{/each}
{/if}