|
|
@ -303,7 +303,7 @@ class Comments extends Component {
|
|
|
|
|
|
|
|
|
|
|
|
<div className="comment_content clearfix" id={`reply_content_${item.id}`}>
|
|
|
|
<div className="comment_content clearfix" id={`reply_content_${item.id}`}>
|
|
|
|
<div className="color-grey-3 break_word_comments" id={`reply_content_${item.id}`}>
|
|
|
|
<div className="color-grey-3 break_word_comments" id={`reply_content_${item.id}`}>
|
|
|
|
{ item.hidden && item.admin === false && item.manager === false
|
|
|
|
{ item.hidden && item.admin === false && (item.manager === false || item.manager == undefined)
|
|
|
|
? <p className="color-orange font-16">违规评论已被屏蔽!</p>
|
|
|
|
? <p className="color-orange font-16">违规评论已被屏蔽!</p>
|
|
|
|
: <div dangerouslySetInnerHTML={{__html: _content}}></div>
|
|
|
|
: <div dangerouslySetInnerHTML={{__html: _content}}></div>
|
|
|
|
}
|
|
|
|
}
|
|
|
|