a tool for shared writing and social publishing

show mention and comments placeholder in looseleaf draft

+4 -4
+4 -4
components/Pages/PublicationMetadata.tsx
··· 118 118 {tags && ( 119 119 <> 120 120 <AddTags /> 121 - {pubRecord?.preferences?.showMentions || 122 - pubRecord?.preferences?.showComments ? ( 121 + {pubRecord?.preferences?.showMentions !== false || 122 + pubRecord?.preferences?.showComments !== false ? ( 123 123 <Separator classname="h-4!" /> 124 124 ) : null} 125 125 </> 126 126 )} 127 - {pubRecord?.preferences?.showMentions && ( 127 + {pubRecord?.preferences?.showMentions !== false && ( 128 128 <div className="flex gap-1 items-center"> 129 129 <QuoteTiny />— 130 130 </div> 131 131 )} 132 - {pubRecord?.preferences?.showComments && ( 132 + {pubRecord?.preferences?.showComments !== false && ( 133 133 <div className="flex gap-1 items-center"> 134 134 <CommentTiny />— 135 135 </div>