Bug fix related to saving entries with mixed changes

This commit is contained in:
Scott Idem
2025-04-01 18:42:32 -04:00
parent d393ed2c7a
commit a41ecb45a9
5 changed files with 119 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ import { onMount } from 'svelte';
import { goto } from '$app/navigation';
// *** Import other supporting libraries
import { FolderPlus } from '@lucide/svelte';
import { BookPlus, FolderPlus } from '@lucide/svelte';
import { liveQuery } from "dexie";
import { Modal } from 'flowbite-svelte';
@@ -137,8 +137,8 @@ async function create_journal() {
<button
class="
btn btn-sm
variant-ghost-primary
hover:variant-filled-primary
variant-ghost-secondary
hover:variant-filled-secondary
transition
"
onclick={
@@ -146,8 +146,9 @@ async function create_journal() {
$journals_sess.show__modal_new__journal_obj = true;
}
}
>
<FolderPlus class="mx-1" />
>
<!-- <FolderPlus class="mx-1" /> -->
<BookPlus />
New Journal
</button>