summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_members.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/channel_members.jsx')
-rw-r--r--web/react/components/channel_members.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/channel_members.jsx b/web/react/components/channel_members.jsx
index 0cd384977..86cc2464d 100644
--- a/web/react/components/channel_members.jsx
+++ b/web/react/components/channel_members.jsx
@@ -74,9 +74,9 @@ export default class ChannelMembers extends React.Component {
componentDidMount() {
ChannelStore.addExtraInfoChangeListener(this.onChange);
ChannelStore.addChangeListener(this.onChange);
- $(React.findDOMNode(this.refs.modal)).on('hidden.bs.modal', this.onHide);
+ $(ReactDOM.findDOMNode(this.refs.modal)).on('hidden.bs.modal', this.onHide);
- $(React.findDOMNode(this.refs.modal)).on('show.bs.modal', this.onShow);
+ $(ReactDOM.findDOMNode(this.refs.modal)).on('show.bs.modal', this.onShow);
}
componentWillUnmount() {
ChannelStore.removeExtraInfoChangeListener(this.onChange);