Less other debug while working on Journals

This commit is contained in:
Scott Idem
2025-04-09 13:11:09 -04:00
parent e1848dddb5
commit adda3e79c5
13 changed files with 123 additions and 96 deletions

View File

@@ -5,7 +5,7 @@ import { browser } from '$app/environment';
import { journals_func } from '$lib/ae_journals/ae_journals_functions';
export async function load({ params, parent }) {
let log_lvl: number = 1;
let log_lvl: number = 0;
let data = await parent();
data.log_lvl = log_lvl;

View File

@@ -1,6 +1,6 @@
<script lang="ts">
/** @type {import('./$types').PageData} */
let log_lvl: number = 1;
let log_lvl: number = 0;
// *** Import Svelte specific
import { browser } from '$app/environment';

View File

@@ -6,7 +6,7 @@ import { browser } from '$app/environment';
import { journals_func } from '$lib/ae_journals/ae_journals_functions';
export async function load({ params, parent }) { // route
let log_lvl: number = 1;
let log_lvl: number = 0;
let data = await parent();
data.log_lvl = log_lvl;
@@ -36,7 +36,7 @@ export async function load({ params, parent }) { // route
api_cfg: ae_acct.api,
journal_entry_id: journal_entry_id,
try_cache: true,
log_lvl: 2
log_lvl: log_lvl
});
ae_acct.slct.journal_obj = load_journal_obj;