From dc8d35fdcfdaa55b7ba30035fee5bd3a8cd00b9c Mon Sep 17 00:00:00 2001 From: keyan Date: Sat, 20 Jan 2024 15:17:34 -0600 Subject: [PATCH] only open related posts when there aren't comments --- components/item-full.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/item-full.js b/components/item-full.js index 9ccb2d4d..f383272a 100644 --- a/components/item-full.js +++ b/components/item-full.js @@ -161,7 +161,7 @@ function TopLevelItem ({ item, noReply, ...props }) { {!noReply && <> 3 ? 'fractions of a penny for your thoughts?' : 'early comments get more zaps'} onCancelQuote={cancelQuote} onQuoteReply={quoteReply} quote={quote} /> - {!item.position && !item.isJob && !item.parentId && !(item.bounty > 0) && } + {!item.position && !item.isJob && !item.parentId && !(item.bounty > 0) && } {item.bounty > 0 && } }