summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_thread.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/rhs_thread.jsx')
-rw-r--r--webapp/components/rhs_thread.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/webapp/components/rhs_thread.jsx b/webapp/components/rhs_thread.jsx
index b001da80a..914a697a5 100644
--- a/webapp/components/rhs_thread.jsx
+++ b/webapp/components/rhs_thread.jsx
@@ -112,6 +112,10 @@ export default class RhsThread extends React.Component {
return true;
}
+ if (nextProps.useMilitaryTime !== this.props.useMilitaryTime) {
+ return true;
+ }
+
if (!Utils.areObjectsEqual(nextState.profiles, this.state.profiles)) {
return true;
}
@@ -243,6 +247,7 @@ export default class RhsThread extends React.Component {
user={profile}
currentUser={this.props.currentUser}
compactDisplay={this.state.compactDisplay}
+ useMilitaryTime={this.props.useMilitaryTime}
/>
<div className='post-right-comments-container'>
{postsArray.map((comPost) => {
@@ -260,6 +265,7 @@ export default class RhsThread extends React.Component {
user={p}
currentUser={this.props.currentUser}
compactDisplay={this.state.compactDisplay}
+ useMilitaryTime={this.props.useMilitaryTime}
/>
);
})}
@@ -286,5 +292,6 @@ RhsThread.defaultProps = {
RhsThread.propTypes = {
fromSearch: React.PropTypes.string,
isMentionSearch: React.PropTypes.bool,
- currentUser: React.PropTypes.object.isRequired
+ currentUser: React.PropTypes.object.isRequired,
+ useMilitaryTime: React.PropTypes.bool.isRequired
};