From 08302114f7f481f7e2230f35638cac2cb52c6fd8 Mon Sep 17 00:00:00 2001 From: celine Date: Fri, 16 Jan 2026 19:20:33 -0500 Subject: [PATCH] show mention and comments placeholder in looseleaf draft --- components/Pages/PublicationMetadata.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/Pages/PublicationMetadata.tsx b/components/Pages/PublicationMetadata.tsx index 70f5f121..db1b7a40 100644 --- a/components/Pages/PublicationMetadata.tsx +++ b/components/Pages/PublicationMetadata.tsx @@ -118,18 +118,18 @@ export const PublicationMetadata = () => { {tags && ( <> - {pubRecord?.preferences?.showMentions || - pubRecord?.preferences?.showComments ? ( + {pubRecord?.preferences?.showMentions !== false || + pubRecord?.preferences?.showComments !== false ? ( ) : null} )} - {pubRecord?.preferences?.showMentions && ( + {pubRecord?.preferences?.showMentions !== false && (
—
)} - {pubRecord?.preferences?.showComments && ( + {pubRecord?.preferences?.showComments !== false && (
—
-- 2.51.2