summaryrefslogtreecommitdiffstats
path: root/web/react/components/file_upload.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/file_upload.jsx')
-rw-r--r--web/react/components/file_upload.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/file_upload.jsx b/web/react/components/file_upload.jsx
index 460d91cc8..c91d03599 100644
--- a/web/react/components/file_upload.jsx
+++ b/web/react/components/file_upload.jsx
@@ -19,7 +19,7 @@ export default class FileUpload extends React.Component {
}
handleChange() {
- var element = $(this.refs.fileInput.getDOMNode());
+ var element = $(React.findDOMNode(this.refs.fileInput));
var files = element.prop('files');
var channelId = this.props.channelId || ChannelStore.getCurrentId();
@@ -149,7 +149,7 @@ export default class FileUpload extends React.Component {
}
componentDidMount() {
- var inputDiv = this.refs.input.getDOMNode();
+ var inputDiv = React.findDOMNode(this.refs.input);
var self = this;
if (this.props.postType === 'post') {