diff --git a/client/coral-embed-stream/src/Comment.js b/client/coral-embed-stream/src/Comment.js
index b0f83a684..7f9f948ed 100644
--- a/client/coral-embed-stream/src/Comment.js
+++ b/client/coral-embed-stream/src/Comment.js
@@ -21,6 +21,7 @@ import LikeButton from 'coral-plugin-likes/LikeButton';
import {BestButton, IfUserCanModifyBest, BEST_TAG, commentIsBest, BestIndicator} from 'coral-plugin-best/BestButton';
import LoadMore from 'coral-embed-stream/src/LoadMore';
import {Slot} from 'coral-framework';
+import IgnoredCommentTombstone from './IgnoredCommentTombstone';
import styles from './Comment.css';
import classnames from 'classnames';
@@ -86,6 +87,9 @@ class Comment extends React.Component {
}).isRequired
}).isRequired,
+ // given a comment, return whether it should be rendered as ignored
+ commentIsIgnored: React.PropTypes.func,
+
// dispatch action to add a tag to a comment
addCommentTag: React.PropTypes.func,
@@ -118,6 +122,7 @@ class Comment extends React.Component {
removeCommentTag,
ignoreUser,
disableReply,
+ commentIsIgnored,
} = this.props;
const like = getActionSummary('LikeActionSummary', comment);
@@ -348,28 +353,29 @@ class Comment extends React.Component {
{
comment.replies &&
comment.replies.map(reply => {
- return
+ This comment is hidden because you ignored this user. +
+- This comment is hidden because you ignored this user. -
-