mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
meta: fix linter failures (#4029)
This commit is contained in:
parent
4bb99880b3
commit
70a4615a47
4 changed files with 11 additions and 76 deletions
|
|
@ -162,9 +162,13 @@ const dashboardModal = new Uppy({
|
|||
})
|
||||
|
||||
dashboardModal.on('complete', ({ transloadit, successful, failed }) => {
|
||||
console.log(transloadit)
|
||||
console.log(successful)
|
||||
console.error(failed)
|
||||
if (failed?.length !== 0) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('it failed', failed)
|
||||
} else {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('success', { transloadit, successful })
|
||||
}
|
||||
})
|
||||
|
||||
function openModal () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue