Commenting out flag button.

This commit is contained in:
David Jay
2016-11-07 16:48:57 -05:00
parent 9c3957ad40
commit 3bdd1893e0
+16 -12
View File
@@ -123,12 +123,14 @@ class CommentStream extends Component {
<PubDate created_at={comment.created_at}/>
<Content content={comment.body}/>
<div className="commentActions">
<Flag
addNotification={this.props.addNotification}
id={commentId}
flag={comment.flag}
postAction={this.props.postAction}
currentUser={this.props.auth.user}/>
{
// <Flag
// addNotification={this.props.addNotification}
// id={commentId}
// flag={comment.flag}
// postAction={this.props.postAction}
// currentUser={this.props.auth.user}/>
}
<ReplyButton
updateItem={this.props.updateItem}
id={commentId}/>
@@ -151,12 +153,14 @@ class CommentStream extends Component {
<PubDate created_at={reply.created_at}/>
<Content content={reply.body}/>
<div className="replyActions">
<Flag
addNotificiation={this.props.addNotification}
id={replyId}
flag={reply.flag}
postAction={this.props.postAction}
currentUser={this.props.auth.user}/>
{
// <Flag
// addNotificiation={this.props.addNotification}
// id={replyId}
// flag={reply.flag}
// postAction={this.props.postAction}
// currentUser={this.props.auth.user}/>
}
<ReplyButton
updateItem={this.props.updateItem}
parent_id={reply.parent_id}/>