summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-06-05 23:09:43 +0800
committerHarrison Healey <harrisonmhealey@gmail.com>2017-06-05 11:09:43 -0400
commitb0f32e3c1928d1a125b9f7bdfd3dcbf2fede65ab (patch)
treec1eabc190d2fbb8a45981662a5effae71fdffaaa /webapp/components/post_view
parentb53ca57bad4f62422f9cf4b62d54c6f508ba13cb (diff)
downloadchat-b0f32e3c1928d1a125b9f7bdfd3dcbf2fede65ab.tar.gz
chat-b0f32e3c1928d1a125b9f7bdfd3dcbf2fede65ab.tar.bz2
chat-b0f32e3c1928d1a125b9f7bdfd3dcbf2fede65ab.zip
fix JS error and incorrect comment thread for SHIFT+UP (#6574)
Diffstat (limited to 'webapp/components/post_view')
-rw-r--r--webapp/components/post_view/components/post_info.jsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/webapp/components/post_view/components/post_info.jsx b/webapp/components/post_view/components/post_info.jsx
index 74ce32817..39a0b1fec 100644
--- a/webapp/components/post_view/components/post_info.jsx
+++ b/webapp/components/post_view/components/post_info.jsx
@@ -17,6 +17,7 @@ import Constants from 'utils/constants.jsx';
import DelayedAction from 'utils/delayed_action.jsx';
import {Overlay} from 'react-bootstrap';
import EmojiPicker from 'components/emoji_picker/emoji_picker.jsx';
+import ChannelStore from 'stores/channel_store.jsx';
import PropTypes from 'prop-types';
@@ -351,6 +352,7 @@ export default class PostInfo extends React.Component {
idCount={idCount}
handleCommentClick={this.props.handleCommentClick}
commentCount={this.props.commentCount}
+ channelId={ChannelStore.getCurrentId()}
/>
);