diff --git a/app/components/post_body/post_body.js b/app/components/post_body/post_body.js index a9756cf4c..1c0a3927d 100644 --- a/app/components/post_body/post_body.js +++ b/app/components/post_body/post_body.js @@ -241,6 +241,7 @@ export default class PostBody extends PureComponent { renderPostAdditionalContent = (blockStyles, messageStyle, textStyles) => { const { + isPostEphemeral, isReplyPost, isSystemMessage, message, @@ -252,7 +253,7 @@ export default class PostBody extends PureComponent { postProps, } = this.props; - if (isSystemMessage) { + if (isSystemMessage && !isPostEphemeral) { return null; }