summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/components/post_header.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/components/post_header.jsx')
-rw-r--r--webapp/components/post_view/components/post_header.jsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/webapp/components/post_view/components/post_header.jsx b/webapp/components/post_view/components/post_header.jsx
index 5900c8281..ff691c12b 100644
--- a/webapp/components/post_view/components/post_header.jsx
+++ b/webapp/components/post_view/components/post_header.jsx
@@ -24,6 +24,8 @@ export default class PostHeader extends React.Component {
<UserProfile
user={this.props.user}
displayNameType={this.props.displayNameType}
+ status={this.props.status}
+ isBusy={this.props.isBusy}
/>
);
let botIndicator;
@@ -98,5 +100,7 @@ PostHeader.propTypes = {
compactDisplay: React.PropTypes.bool,
displayNameType: React.PropTypes.string,
useMilitaryTime: React.PropTypes.bool.isRequired,
- isFlagged: React.PropTypes.bool.isRequired
+ isFlagged: React.PropTypes.bool.isRequired,
+ status: React.PropTypes.string,
+ isBusy: React.PropTypes.bool
};