mirror of
https://github.com/immich-app/immich.git
synced 2025-06-14 19:17:44 -04:00
chore: fix merge
This commit is contained in:
parent
3297034cf5
commit
2a6e74d3d3
@ -216,7 +216,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if shouldShowEditAlbumForm}
|
{#if shouldShowEditAlbumForm}
|
||||||
<FullScreenModal on:clickOutside={() => (shouldShowEditAlbumForm = false)}>
|
<FullScreenModal onClose={() => (shouldShowEditAlbumForm = false)}>
|
||||||
<EditAlbumForm
|
<EditAlbumForm
|
||||||
album={selectedAlbum}
|
album={selectedAlbum}
|
||||||
on:editSuccess={() => successModifyAlbum()}
|
on:editSuccess={() => successModifyAlbum()}
|
||||||
@ -275,8 +275,8 @@
|
|||||||
<ConfirmDialogue
|
<ConfirmDialogue
|
||||||
title="Delete Album"
|
title="Delete Album"
|
||||||
confirmText="Delete"
|
confirmText="Delete"
|
||||||
on:confirm={deleteSelectedAlbum}
|
onConfirm={deleteSelectedAlbum}
|
||||||
on:cancel={() => (albumToDelete = null)}
|
onClose={() => (albumToDelete = null)}
|
||||||
>
|
>
|
||||||
<svelte:fragment slot="prompt">
|
<svelte:fragment slot="prompt">
|
||||||
<p>Are you sure you want to delete the album <b>{albumToDelete.albumName}</b>?</p>
|
<p>Are you sure you want to delete the album <b>{albumToDelete.albumName}</b>?</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user