General clean up. Make things configurable. More AI stuff.

This commit is contained in:
Scott Idem
2025-09-12 16:20:50 -04:00
parent 0931b960b6
commit fd3105b4e1
6 changed files with 434 additions and 21 deletions

View File

@@ -31,6 +31,7 @@ interface Props {
let { data }: Props = $props();
import Modal_journals_cfg from './modal_journals_config.svelte';
import Journal_obj_li from './ae_comp__journal_obj_li.svelte';
// import Element_data_store from '$lib/element_data_store_v2.svelte';
@@ -203,7 +204,6 @@ async function create_journal() {
<!-- Show Journals Config button -->
<button
disabled={true}
type="button"
class="
btn btn-sm
@@ -213,6 +213,7 @@ async function create_journal() {
"
onclick={
() => {
$journals_sess.show__modal__journals_config = true;
// Redirect to the journals config page
// goto('/journals/config');
}
@@ -326,5 +327,12 @@ async function create_journal() {
{/if}
{#if $journals_sess.show__modal__journals_config}
<Modal_journals_cfg
show={$journals_sess.show__modal__journals_config}
/>
{/if}
<style lang="postcss">
</style>