diff options
author | Wolfgang Müller | 2025-02-26 15:55:25 +0100 |
---|---|---|
committer | Wolfgang Müller | 2025-02-26 17:38:53 +0100 |
commit | ccb5caa6d48f72849d4595f6067e15f8d77982aa (patch) | |
tree | 327aa20be814b5598682cbb850644fad0de1c3c7 | |
parent | ddce1596af778ea42eda57b5b4ef66ca64ba877c (diff) | |
download | hircine-ccb5caa6d48f72849d4595f6067e15f8d77982aa.tar.gz |
frontend: Streamline display of content in Delete tabs
-rw-r--r-- | frontend/src/lib/tabs/ArchiveDelete.svelte | 21 | ||||
-rw-r--r-- | frontend/src/lib/tabs/ComicDelete.svelte | 13 |
2 files changed, 12 insertions, 22 deletions
diff --git a/frontend/src/lib/tabs/ArchiveDelete.svelte b/frontend/src/lib/tabs/ArchiveDelete.svelte index 50a99c2..d2b2465 100644 --- a/frontend/src/lib/tabs/ArchiveDelete.svelte +++ b/frontend/src/lib/tabs/ArchiveDelete.svelte @@ -21,21 +21,12 @@ </script> <div class="flex flex-col gap-2"> - <div> - <p> - Deleting this archive will remove the - <span class="cursor-help font-medium underline" title={archive.path}>archive file</span> on disk. - </p> - {#if archive.comics.length > 0} - <p>The following comics will also be deleted:</p> - <ul class="ml-8 list-disc"> - {#each archive.comics as comic} - <li><a href="/comics/{comic.id}" class="underline">{comic.title}</a></li> - {/each} - </ul> - {/if} - <p class="mt-2 font-medium">This action is irrevocable.</p> - </div> + <p> + Deleting this archive will remove all of its comics as well as the + <span class="cursor-help font-medium underline" title={archive.path}>archive file</span> on + disk. + <span class="font-medium">This action is irrevocable.</span> + </p> <div class="flex"> <DeleteButton prominent onclick={deleteArchive} /> </div> diff --git a/frontend/src/lib/tabs/ComicDelete.svelte b/frontend/src/lib/tabs/ComicDelete.svelte index 3ae924c..93fa106 100644 --- a/frontend/src/lib/tabs/ComicDelete.svelte +++ b/frontend/src/lib/tabs/ComicDelete.svelte @@ -21,13 +21,12 @@ </script> <div class="flex flex-col gap-2"> - <div> - <p> - Deleting this comic will make all of its pages available again for allocation. All of its - metadata will be lost. - </p> - <p class="mt-2 font-medium">This action is irrevocable.</p> - </div> + <p> + Deleting this comic will make all of its pages available again for allocation. All of its + metadata will be lost. + <span class="font-medium">This action is irrevocable.</span> + </p> + <div class="flex"> <DeleteButton prominent {onclick} /> </div> |