From f695d8b66a2437420e0e831d0a7d967dd61ba3ce Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Mon, 18 Aug 2025 10:21:18 +0200 Subject: [PATCH] update(Dashboard Widget Drag): shows hidden widget when dragging the widget on the dashboard --- public/js/components/Drop/Grid.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/js/components/Drop/Grid.js b/public/js/components/Drop/Grid.js index d11e4c249..a7bea64e3 100644 --- a/public/js/components/Drop/Grid.js +++ b/public/js/components/Drop/Grid.js @@ -434,6 +434,8 @@ export default { clone.style.zIndex = 5; clone.classList.add("widgetClone"); this.$refs.container.appendChild(clone); + const hiddenWidget = clone.querySelector("[style='display: none;']"); + hiddenWidget.style.removeProperty("display"); this.clonedWidget = clone; }, 0);