From f3869097485ee3e9b87155f804189747b7c38745 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Sat, 16 Sep 2017 01:36:15 +0700 Subject: [PATCH] Don't show tombstone during "view context" --- client/coral-embed-stream/src/components/Comment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/coral-embed-stream/src/components/Comment.js b/client/coral-embed-stream/src/components/Comment.js index 2b8c565da..c6a3b740d 100644 --- a/client/coral-embed-stream/src/components/Comment.js +++ b/client/coral-embed-stream/src/components/Comment.js @@ -341,8 +341,8 @@ export default class Comment extends React.Component { emit, commentClassNames = [] } = this.props; - - if (this.commentIsRejected(comment)) { + + if (!highlighted && this.commentIsRejected(comment)) { return ; }