summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_root_post.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/rhs_root_post.jsx')
-rw-r--r--webapp/components/rhs_root_post.jsx14
1 files changed, 13 insertions, 1 deletions
diff --git a/webapp/components/rhs_root_post.jsx b/webapp/components/rhs_root_post.jsx
index 1a28dc008..af0c8c0d5 100644
--- a/webapp/components/rhs_root_post.jsx
+++ b/webapp/components/rhs_root_post.jsx
@@ -256,6 +256,8 @@ export default class RhsRootPost extends React.Component {
user={user}
status={this.props.status}
isBusy={this.props.isBusy}
+ isRHS={true}
+ hasMention={true}
/>
);
let botIndicator;
@@ -308,6 +310,8 @@ export default class RhsRootPost extends React.Component {
height='36'
user={this.props.user}
isBusy={this.props.isBusy}
+ isRHS={true}
+ hasMention={true}
/>
);
@@ -344,6 +348,8 @@ export default class RhsRootPost extends React.Component {
status={status}
user={this.props.user}
isBusy={this.props.isBusy}
+ isRHS={true}
+ hasMention={true}
/>
);
}
@@ -417,7 +423,13 @@ export default class RhsRootPost extends React.Component {
<div className={postClass}>
<PostBodyAdditionalContent
post={post}
- message={<PostMessageContainer post={post}/>}
+ message={
+ <PostMessageContainer
+ post={post}
+ isRHS={true}
+ hasMention={true}
+ />
+ }
previewCollapsed={this.props.previewCollapsed}
/>
</div>