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:
parent
0c8c89c651
commit
d55ffafb43
1 changed files with 1 additions and 1 deletions
|
@ -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};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue