From d233c8081a573803f89cb293dcf21f2f7d538b41 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Wed, 3 Sep 2025 00:13:30 +0200 Subject: [PATCH] only show section header if values exist --- src/lib/components/Section.svelte | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/lib/components/Section.svelte b/src/lib/components/Section.svelte index ca54297..26ea31a 100644 --- a/src/lib/components/Section.svelte +++ b/src/lib/components/Section.svelte @@ -4,13 +4,15 @@
-
-
-

{title}

- + {#if title || description} +
+
+

{title}

+ +
+
- -
+ {/if}