More eslint fixes.

This commit is contained in:
Roger Braun 2017-02-22 22:43:40 +01:00
parent 5abf857705
commit 9778d4cfc0
3 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@ const mediaUpload = {
.then((fileData) => {
self.$emit('uploaded', fileData)
self.uploading = false
}, (error) => {
}, (error) => { // eslint-disable-line handle-callback-err
self.$emit('upload-failed')
self.uploading = false
})