Mostly get drag and drop working

This commit is contained in:
ZXY101
2023-09-13 16:57:52 +02:00
parent 3c8ab90b06
commit 3a37b62a38
9 changed files with 284 additions and 146 deletions

View File

@@ -3,7 +3,7 @@
import CatalogItem from './CatalogItem.svelte';
</script>
{#if $catalog && $catalog.length > 0}
{#if $catalog}
{#if $catalog.length > 0}
<div class="container">
{#each $catalog as { manga }}
@@ -13,7 +13,6 @@
{:else}
<div class="empty-state">
<p>Your catalog is currently empty.</p>
<a href="upload">Add manga</a>
</div>
{/if}
{:else}