From 29d62278b965bdc2f073df8e9df94fa0f9d47a03 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Thu, 23 Oct 2025 09:56:08 +0000 Subject: [PATCH] Bug 39320: (QA follow-up): Only show 'drop widgets here' area when actively dragging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás Cohen Arazi --- .../ModuleDashboard/ModuleDashboard.vue | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/ModuleDashboard.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/ModuleDashboard.vue index 1471c2dc079..cb66718eaa0 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/ModuleDashboard.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/ModuleDashboard.vue @@ -12,7 +12,7 @@
{{ $__("Drop widgets here") }} @@ -30,6 +30,8 @@ 'w-full', { 'empty-drag-area': selectedWidgetsLeft.length === 0 }, ]" + @start="handleDragStart" + @end="handleDragEnd" >
{{ $__("Drop widgets here") }} @@ -63,6 +65,8 @@ 'w-full', { 'empty-drag-area': selectedWidgetsRight.length === 0 }, ]" + @start="handleDragStart" + @end="handleDragEnd" >