diff --git a/apps/comments-ui/src/components/Avatar.js b/apps/comments-ui/src/components/Avatar.js index a9800ad246..097ede734e 100644 --- a/apps/comments-ui/src/components/Avatar.js +++ b/apps/comments-ui/src/components/Avatar.js @@ -83,7 +83,7 @@ const Avatar = (props) => { // When an avatar has been deleted or hidden if (props.isBlank) { avatarEl = ( -
+
); diff --git a/apps/comments-ui/src/components/Comment.js b/apps/comments-ui/src/components/Comment.js index bd805c1d34..bc222b47fb 100644 --- a/apps/comments-ui/src/components/Comment.js +++ b/apps/comments-ui/src/components/Comment.js @@ -96,8 +96,11 @@ const Comment = ({updateIsEditing = null, isEditing, ...props}) => {
{isNotPublished ? -
-

{notPublishedMessage}

+
+

{notPublishedMessage}

+
+ +
:

{!comment.member ? 'Deleted member' : (comment.member.name ? comment.member.name : 'Anonymous')}

@@ -112,15 +115,17 @@ const Comment = ({updateIsEditing = null, isEditing, ...props}) => {
{!isNotPublished && -
-

+
+

} -
- {!isNotPublished && } - {!isNotPublished && (canReply && (isNotPublished || !props.parent) && )} - -
+ {!isNotPublished && ( +
+ {!isNotPublished && } + {!isNotPublished && (canReply && (isNotPublished || !props.parent) && )} + {!isNotPublished && } +
+ )} {hasReplies &&