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