summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_body.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-11-02 14:20:54 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2015-11-02 14:20:54 -0500
commite52669c2da0bb78c225a5c87edebe472e4c7ac56 (patch)
treea311de9975f99ab26396510c7261bfc30f799495 /web/react/components/post_body.jsx
parent31eee1ef6ebb59a89885ef7e3ebd6801f9a396d4 (diff)
parentd4ec6d3bf42d257851304fe9588f2db8bbbefa13 (diff)
downloadchat-e52669c2da0bb78c225a5c87edebe472e4c7ac56.tar.gz
chat-e52669c2da0bb78c225a5c87edebe472e4c7ac56.tar.bz2
chat-e52669c2da0bb78c225a5c87edebe472e4c7ac56.zip
Merge pull request #1249 from mattermost/plt-823
PLT-823 Refactor of center channel
Diffstat (limited to 'web/react/components/post_body.jsx')
-rw-r--r--web/react/components/post_body.jsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/web/react/components/post_body.jsx b/web/react/components/post_body.jsx
index 7138e2cb4..e1f495d54 100644
--- a/web/react/components/post_body.jsx
+++ b/web/react/components/post_body.jsx
@@ -50,7 +50,6 @@ export default class PostBody extends React.Component {
componentDidUpdate() {
this.parseEmojis();
- this.props.resize();
}
componentWillReceiveProps(nextProps) {
@@ -338,6 +337,5 @@ PostBody.propTypes = {
post: React.PropTypes.object.isRequired,
parentPost: React.PropTypes.object,
retryPost: React.PropTypes.func.isRequired,
- handleCommentClick: React.PropTypes.func.isRequired,
- resize: React.PropTypes.func.isRequired
+ handleCommentClick: React.PropTypes.func.isRequired
};