Fix step drag/drop file [SCI-7123]

This commit is contained in:
Anton 2022-08-23 17:59:28 +02:00
parent 8744286d98
commit 3e539adbde

View file

@ -254,7 +254,7 @@
},
methods: {
dragEnter(e) {
if (this.showFileModal || !urls.upload_attachment_url) return;
if (this.showFileModal || !this.urls.upload_attachment_url) return;
// Detect if dragged element is a file
// https://stackoverflow.com/a/8494918