Merge pull request #959 from coralproject/view-context-no-tombstone

Don't show tombstone during "view context"
This commit is contained in:
Wyatt Johnson
2017-09-15 17:20:29 -06:00
committed by GitHub
@@ -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 <CommentTombstone action='reject' />;
}