Lots of clean up. Updates to Archive related admin section and some fields.

This commit is contained in:
Scott Idem
2025-07-09 16:33:48 -04:00
parent 8a80bb1a2f
commit 06cf665b06
13 changed files with 334 additions and 196 deletions

View File

@@ -1,9 +1,12 @@
<script lang="ts">
import type { PageData } from './$types';
interface Props {
/** @type {import('./$types').PageData} */
data: any;
}
let { data }: { data: PageData } = $props();
let { data }: Props = $props();
let log_lvl: number = 1;
let log_lvl: number = 0;
// *** Import Svelte specific
import { onDestroy } from "svelte";