A quick save while the new exports are fully working. The prepend and append also work now.

This commit is contained in:
Scott Idem
2026-01-14 12:29:47 -05:00
parent 228f0ecf06
commit b80cbb7c2b
6 changed files with 68 additions and 15 deletions

View File

@@ -29,6 +29,7 @@
onChangeJournal: () => void;
onAppend?: () => void;
onPrepend?: () => void;
onShowExport?: () => void;
save_status?: 'saved' | 'unsaved' | 'saving';
log_lvl?: number;
}
@@ -45,6 +46,7 @@
onChangeJournal,
onAppend,
onPrepend,
onShowExport,
save_status = 'saved',
log_lvl = 0
}: Props = $props();
@@ -257,6 +259,7 @@ p-2 md:p-3 rounded-lg shadow-md
{onChangeJournal}
{onAppend}
{onPrepend}
{onShowExport}
{log_lvl}
/>
</div>