1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 00:28:00 +02:00

Fix indentation fail

This commit is contained in:
Tim Daubenschütz 2015-11-19 17:36:47 +01:00
parent 2aab5d2d0d
commit 1318bf5413
2 changed files with 2 additions and 3 deletions

View File

@ -79,7 +79,7 @@ let FileDragAndDrop = React.createClass({
}
if(typeof this.props.onDrop === 'function' && files) {
this.props.onDrop(files);
this.props.onDrop(files);
}
},

View File

@ -38,9 +38,8 @@ export default function UploadButton({ className = 'btn btn-default btn-sm' } =
let files = event.target.files;
if(typeof this.props.onDrop === 'function' && files) {
this.props.onDrop(files);
this.props.onDrop(files);
}
},
getUploadingFiles() {