John Molakvoæ
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
4 deletions
-
apps/files/src/components/DragAndDropNotice.vue
-
dist/files-main.js
-
dist/files-main.js.map
|
|
|
@ -126,7 +126,7 @@ export default defineComponent({ |
|
|
|
// only when we're leaving the current element |
|
|
|
// Avoid flickering |
|
|
|
const currentTarget = event.currentTarget as HTMLElement |
|
|
|
if (currentTarget?.contains(event.relatedTarget as HTMLElement)) { |
|
|
|
if (currentTarget?.contains((event.relatedTarget ?? event.target) as HTMLElement)) { |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
|