From 6f081e41368da23bb75783180aef09eb226dffca Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Wed, 31 Jan 2024 09:15:48 +0100 Subject: [PATCH] removes logs --- public/js/components/Form/Upload/Dms.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/js/components/Form/Upload/Dms.js b/public/js/components/Form/Upload/Dms.js index fd6af9858..6a31ca545 100755 --- a/public/js/components/Form/Upload/Dms.js +++ b/public/js/components/Form/Upload/Dms.js @@ -33,14 +33,11 @@ export default { dt.items.add(file); doubles.push(this.stringifyFile(file)); } - console.log("files",event.target.files); for (var file of event.target.files) { // NOTE(chris): deep check (with FileReader) would require an async function so we only check the basic attributes if (doubles.indexOf(this.stringifyFile(file)) < 0) dt.items.add(file); } - console.log(Array.isArray(dt.files)); - console.log(typeof(dt.files)); this.$emit('update:modelValue', dt.files); }, removeFile(id) {