From 042265008c61687f9e79e5701d04b42b3d463ca4 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Thu, 14 May 2026 16:19:25 -0400 Subject: [PATCH] fix(journals): remove description_md_html from IDB properties_to_save Mirrors the content_md_html/history_md_html fix on journal_entry. description_md_html is computed from description via marked.parse() on every background refresh and does not need to be persisted to IDB. Co-Authored-By: Claude Sonnet 4.6 --- src/lib/ae_journals/ae_journals__journal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ae_journals/ae_journals__journal.ts b/src/lib/ae_journals/ae_journals__journal.ts index 4c2dcce5..ddee6337 100644 --- a/src/lib/ae_journals/ae_journals__journal.ts +++ b/src/lib/ae_journals/ae_journals__journal.ts @@ -726,7 +726,7 @@ const properties_to_save = [ 'outline', 'description', - 'description_md_html', // Use the markdown parser to generate HTML + // description_md_html is computed from description on every load — not stored to save IDB quota 'description_html', 'description_json',