mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed linting warning in Comment component
This commit is contained in:
parent
ff036bba90
commit
0c8c89c651
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ const Comment = (props) => {
|
|||
</div>
|
||||
<div className="ml-14 flex gap-5 items-center">
|
||||
<Like comment={comment} />
|
||||
{isNotPublished || !props.parent && <Reply comment={comment} toggleReply={toggleReplyMode} isReplying={isInReplyMode} />}
|
||||
{(isNotPublished || !props.parent) && <Reply comment={comment} toggleReply={toggleReplyMode} isReplying={isInReplyMode} />}
|
||||
<h6 className="text-sm text-neutral-400 dark:text-[rgba(255,255,255,0.5)] font-sans">{formatRelativeTime(comment.created_at)}</h6>
|
||||
<More comment={comment} toggleEdit={toggleEditMode} />
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue