FIX: the filtered array was not being used (#69)

This commit is contained in:
Joffrey JAFFEUX 2020-09-23 15:53:14 +02:00 committed by GitHub
parent 6205bb8569
commit 685b5a45c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ export default Ember.Component.extend({
} }
return false; return false;
}); });
const firstFile = fileList[0]; const firstFile = files[0];
this.set("loading", true); this.set("loading", true);