MM-13379 Make deleted comments indented (#2437)
This commit is contained in:
parent
9bf14c8053
commit
852227684b
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ export default class Post extends PureComponent {
|
|||
|
||||
isReplyPost = () => {
|
||||
const {renderReplies, post} = this.props;
|
||||
return Boolean(renderReplies && post.root_id && !isPostEphemeral(post));
|
||||
return Boolean(renderReplies && post.root_id && (!isPostEphemeral(post) || post.state === Posts.POST_DELETED));
|
||||
};
|
||||
|
||||
replyBarStyle = () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue