Allow uploading the same file twice

This commit is contained in:
David Baker 2015-07-21 20:55:23 -07:00
parent 2eba2280d8
commit 904754b20d

View File

@ -33,7 +33,10 @@ module.exports = React.createClass({
onUploadFileSelected: function(ev) { onUploadFileSelected: function(ev) {
var files = ev.target.files; var files = ev.target.files;
// MessageComposer shouldn't have to rely on it's parent passing in a callback to upload a file // MessageComposer shouldn't have to rely on it's parent passing in a callback to upload a file
this.props.uploadFile(files[0]); if (files && files.length > 0) {
this.props.uploadFile(files[0]);
}
this.refs.uploadInput.getDOMNode().value = null;
}, },
render: function() { render: function() {