[fix] oops forgot to remove the console.log(s)

This commit is contained in:
guillaume91 2024-05-23 11:24:35 +02:00
parent 4dfedb75b3
commit 020ede073b

View file

@ -159,19 +159,16 @@ class="hidden"
onDragenter() {
if(!this.isDragging){
this.isDragging = true;
console.log('ondragenter:',uuid,'->',this.isDragging);
}
},
onDragleave() {
if(this.isDragging) {
this.isDragging = false;
console.log('ondragleave: ',uuid,'->', this.isDragging);
}
},
onDragover() {
if(!this.isDragging) {
this.isDragging = true;
console.log('ondragover: ',uuid,'->',this.isDragging);
}
},
removeUpload(tmpFilename) {