diff --git a/package.json b/package.json
index 646487f6..8f9a2f7a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "osit-aether-app-svelte",
- "version": "3.0.3",
+ "version": "3.0.4",
"description": "One Sky IT's Aether App created with Svelte, SvelteKit, Tailwind CSS, Lucide, Font Awesome, and Skeleton UI. -Scott Idem",
"homepage": "https://oneskyit.com/",
"private": true,
diff --git a/src/routes/journals/ae_comp__journal_entry_obj_qry.svelte b/src/routes/journals/ae_comp__journal_entry_obj_qry.svelte
index e5fb9901..b8dfb4e2 100644
--- a/src/routes/journals/ae_comp__journal_entry_obj_qry.svelte
+++ b/src/routes/journals/ae_comp__journal_entry_obj_qry.svelte
@@ -138,7 +138,36 @@ if ($journals_trig.journal_entry_qry) {
Clear
+
+ {#await $journals_prom.load__journal_entry_obj_li}
+
+ Loading...
+
+ {:then load_result}
+ {#if load_result === null}
+
+ No entries found - null
+
+ {:else if load_result?.length === 0}
+
+ No entries found
+
+ {:else if $journals_sess.entry_li?.length === 0}
+
+ Enter to search
+
+ {:else}
+
+ {load_result?.length ?? 0} found
+
+ {/if}
+ {:catch error}
+
+ Error loading entries.
+
+ {/await}
+