diff --git a/run-dev.sh b/run-dev.sh index 0a3a9a5..c1663c9 100755 --- a/run-dev.sh +++ b/run-dev.sh @@ -2,6 +2,7 @@ trap 'echo "Received SIGINT or SIGTERM. Exiting..." >&2; exit 1' SIGINT SIGTERM +bun --bun run run-migrations bun --bun run dev kill -- -$$ \ No newline at end of file diff --git a/src/lib/components/BulkListItem/BulkListItem.svelte b/src/lib/components/BulkListItem/BulkListItem.svelte index 42368a0..210952a 100644 --- a/src/lib/components/BulkListItem/BulkListItem.svelte +++ b/src/lib/components/BulkListItem/BulkListItem.svelte @@ -1,6 +1,7 @@ {#if $step === 1} @@ -154,7 +191,7 @@ const onSetSelectedCategory = () => {
{#if $isAnySelected && !$isFetchingMetadata} @@ -202,4 +239,35 @@ const onSetSelectedCategory = () => { items={$itemsCount} position="right" />
+{:else if $step === 3} +
+

Import results

+
+ {#if $importResult.successful} +
+
+ Success! + + {$importResult.successful} bookmarks imported successfully. + +
+
+ {/if} + {#if $importResult.failed} +
+
+ Error! + + {$importResult.failed} bookmarks failed to import. + +
+
+ {/if} +
+ + Total bookmarks: {$importResult.total} + +
+
+
{/if}