From 3fa0156f527ea8f503c56efffa20f699e0559dac Mon Sep 17 00:00:00 2001 From: oabrivard Date: Thu, 26 Mar 2026 21:44:44 +0100 Subject: [PATCH] fix: default display level to 3 (half summary) --- frontend/src/pages/SynthesisDetail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/SynthesisDetail.tsx b/frontend/src/pages/SynthesisDetail.tsx index cd3d17b..a964e5e 100644 --- a/frontend/src/pages/SynthesisDetail.tsx +++ b/frontend/src/pages/SynthesisDetail.tsx @@ -139,7 +139,7 @@ const SynthesisDetail: Component = () => { }); // Display level for article cards (1=title only, 2=+2 lines, 3=+half, 4=full) - const [displayLevel, setDisplayLevel] = createSignal(4); + const [displayLevel, setDisplayLevel] = createSignal(3); // Export state const [exportingMarkdown, setExportingMarkdown] = createSignal(false);