0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed replies hidden if all removed or hidden

This commit is contained in:
Simon Backx 2022-07-08 10:49:01 +02:00
parent 0c8c89c651
commit d55ffafb43

View file

@ -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};