Reminder message (/remind) do not show message text on mobile. (#2710)
This commit is contained in:
parent
2e756ba21a
commit
2ca87f7ac4
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue