diff --git a/client/coral-embed-stream/src/components/Comment.js b/client/coral-embed-stream/src/components/Comment.js
index a66b8a224..f14e4c991 100644
--- a/client/coral-embed-stream/src/components/Comment.js
+++ b/client/coral-embed-stream/src/components/Comment.js
@@ -431,28 +431,28 @@ export default class Comment extends React.Component {
inline
/>
- { (currentUser &&
- (comment.user.id === currentUser.id))
+ { (currentUser && (comment.user.id === currentUser.id)) &&
- /* User can edit/delete their own comment for a short window after posting */
- ?
- {
- commentIsStillEditable(comment) &&
- Edit
- }
-
+ /* User can edit/delete their own comment for a short window after posting */
+
+ {
+ commentIsStillEditable(comment) &&
+ Edit
+ }
+
+ }
+ { (currentUser && (comment.user.id !== currentUser.id)) &&
/* TopRightMenu allows currentUser to ignore other users' comments */
- :
-
-
+
+
+
}
-
{
this.state.isEditing
?