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.jsx24
1 files changed, 13 insertions, 11 deletions
diff --git a/webapp/components/rhs_root_post.jsx b/webapp/components/rhs_root_post.jsx
index bf9748636..c79d1cabd 100644
--- a/webapp/components/rhs_root_post.jsx
+++ b/webapp/components/rhs_root_post.jsx
@@ -29,6 +29,8 @@ import {Overlay} from 'react-bootstrap';
import {FormattedMessage} from 'react-intl';
+import PropTypes from 'prop-types';
+
import React from 'react';
import {Link} from 'react-router/es6';
@@ -597,15 +599,15 @@ RhsRootPost.defaultProps = {
commentCount: 0
};
RhsRootPost.propTypes = {
- post: React.PropTypes.object.isRequired,
- lastPostCount: React.PropTypes.number,
- user: React.PropTypes.object.isRequired,
- currentUser: React.PropTypes.object.isRequired,
- commentCount: React.PropTypes.number,
- compactDisplay: React.PropTypes.bool,
- useMilitaryTime: React.PropTypes.bool.isRequired,
- isFlagged: React.PropTypes.bool,
- status: React.PropTypes.string,
- previewCollapsed: React.PropTypes.string,
- isBusy: React.PropTypes.bool
+ post: PropTypes.object.isRequired,
+ lastPostCount: PropTypes.number,
+ user: PropTypes.object.isRequired,
+ currentUser: PropTypes.object.isRequired,
+ commentCount: PropTypes.number,
+ compactDisplay: PropTypes.bool,
+ useMilitaryTime: PropTypes.bool.isRequired,
+ isFlagged: PropTypes.bool,
+ status: PropTypes.string,
+ previewCollapsed: PropTypes.string,
+ isBusy: PropTypes.bool
};