From 30257bf72c333c0d9b6f24a896e80bbc0be7df16 Mon Sep 17 00:00:00 2001 From: silberengel Date: Mon, 8 Dec 2025 06:39:37 +0100 Subject: [PATCH] turn comments off, by default --- src/lib/components/publications/Publication.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/components/publications/Publication.svelte b/src/lib/components/publications/Publication.svelte index f17f488..d30e588 100644 --- a/src/lib/components/publications/Publication.svelte +++ b/src/lib/components/publications/Publication.svelte @@ -64,7 +64,7 @@ let publicationContentRef: HTMLElement | null = $state(null); // Comment layer state - let commentsVisible = $state(true); + let commentsVisible = $state(false); let comments = $state([]); let commentLayerRef: any = null; let showArticleCommentUI = $state(false); @@ -1734,8 +1734,8 @@