summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-08-20 10:56:11 -0700
committerCorey Hulen <corey@hulen.com>2015-08-20 10:56:11 -0700
commit521f8a65330a8faeb66abb3fcd508966f2245267 (patch)
treef6ee4dd17401fd85c87aa5f8a6928a027e6f428d /web/react/components
parent7d5d6ae5b09621f12947de7c28945a844db1ff85 (diff)
parente0a525ebe74eee95b7f142d36920668f5da30061 (diff)
downloadchat-521f8a65330a8faeb66abb3fcd508966f2245267.tar.gz
chat-521f8a65330a8faeb66abb3fcd508966f2245267.tar.bz2
chat-521f8a65330a8faeb66abb3fcd508966f2245267.zip
Merge pull request #421 from nickago/hotfix
HOTFIX: Fixed this/self typo
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/file_upload.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/file_upload.jsx b/web/react/components/file_upload.jsx
index 7497ec330..e77982559 100644
--- a/web/react/components/file_upload.jsx
+++ b/web/react/components/file_upload.jsx
@@ -219,7 +219,7 @@ module.exports = React.createClass({
continue;
}
- var channelId = this.props.channelId || ChannelStore.getCurrentId();
+ var channelId = self.props.channelId || ChannelStore.getCurrentId();
// generate a unique id that can be used by other components to refer back to this file upload
var clientId = utils.generateId();