From d55ffafb4398256bb9cfb05c55bc750e5e007108 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Fri, 8 Jul 2022 10:49:01 +0200 Subject: [PATCH] Fixed replies hidden if all removed or hidden --- apps/comments-ui/src/components/Comment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments-ui/src/components/Comment.js b/apps/comments-ui/src/components/Comment.js index 3ea0d4daec..c4e470a3eb 100644 --- a/apps/comments-ui/src/components/Comment.js +++ b/apps/comments-ui/src/components/Comment.js @@ -24,7 +24,7 @@ const Comment = (props) => { const {admin} = useContext(AppContext); const comment = props.comment; - const hasReplies = comment.replies && comment.replies.length > 0 && !!comment.replies.find(r => r.status === 'published'); + const hasReplies = comment.replies && comment.replies.length > 0; const isNotPublished = comment.status !== 'published'; const html = {__html: comment.html};