From 852227684b506c9b6a2d320b0ce296d21a303a42 Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Fri, 7 Dec 2018 12:27:44 -0300 Subject: [PATCH] MM-13379 Make deleted comments indented (#2437) --- app/components/post/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/post/post.js b/app/components/post/post.js index e63028afc..052d6a775 100644 --- a/app/components/post/post.js +++ b/app/components/post/post.js @@ -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 = () => {