From 5b3de5f551a5fb09cc074586059415421c3e11d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 18 Dec 2018 12:53:02 +0100 Subject: [PATCH] Missing JS parameter --- src/scripts/js/es6/common/vuecomponents/mixins/Droptarget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/js/es6/common/vuecomponents/mixins/Droptarget.js b/src/scripts/js/es6/common/vuecomponents/mixins/Droptarget.js index 6021bafa..a033833b 100644 --- a/src/scripts/js/es6/common/vuecomponents/mixins/Droptarget.js +++ b/src/scripts/js/es6/common/vuecomponents/mixins/Droptarget.js @@ -64,7 +64,7 @@ var Droptarget = { _onDragEnd() { this.droptargetCounter = 0; }, - _onDragOver() { + _onDragOver(event) { event.preventDefault(); event.stopPropagation(); },