mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
feat: show delete album option in empty album (#14271)
* fix: show delete album option in empty album * remove unused code
This commit is contained in:
parent
9a9d40c193
commit
6ec94f94f1
1 changed files with 8 additions and 5 deletions
|
@ -500,9 +500,11 @@
|
||||||
{#if album.assetCount > 0}
|
{#if album.assetCount > 0}
|
||||||
<CircleIconButton title={$t('slideshow')} onclick={handleStartSlideshow} icon={mdiPresentationPlay} />
|
<CircleIconButton title={$t('slideshow')} onclick={handleStartSlideshow} icon={mdiPresentationPlay} />
|
||||||
<CircleIconButton title={$t('download')} onclick={handleDownloadAlbum} icon={mdiFolderDownloadOutline} />
|
<CircleIconButton title={$t('download')} onclick={handleDownloadAlbum} icon={mdiFolderDownloadOutline} />
|
||||||
|
{/if}
|
||||||
|
|
||||||
{#if isOwned}
|
{#if isOwned}
|
||||||
<ButtonContextMenu icon={mdiDotsVertical} title={$t('album_options')}>
|
<ButtonContextMenu icon={mdiDotsVertical} title={$t('album_options')}>
|
||||||
|
{#if album.assetCount > 0}
|
||||||
<MenuOption
|
<MenuOption
|
||||||
icon={mdiImageOutline}
|
icon={mdiImageOutline}
|
||||||
text={$t('select_album_cover')}
|
text={$t('select_album_cover')}
|
||||||
|
@ -513,9 +515,10 @@
|
||||||
text={$t('options')}
|
text={$t('options')}
|
||||||
onClick={() => (viewMode = AlbumPageViewMode.OPTIONS)}
|
onClick={() => (viewMode = AlbumPageViewMode.OPTIONS)}
|
||||||
/>
|
/>
|
||||||
<MenuOption icon={mdiDeleteOutline} text={$t('delete_album')} onClick={() => handleRemoveAlbum()} />
|
{/if}
|
||||||
</ButtonContextMenu>
|
|
||||||
{/if}
|
<MenuOption icon={mdiDeleteOutline} text={$t('delete_album')} onClick={() => handleRemoveAlbum()} />
|
||||||
|
</ButtonContextMenu>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if isCreatingSharedAlbum && album.albumUsers.length === 0}
|
{#if isCreatingSharedAlbum && album.albumUsers.length === 0}
|
||||||
|
|
Loading…
Reference in a new issue