mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Allow uploading the same file twice
This commit is contained in:
parent
2eba2280d8
commit
904754b20d
@ -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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user