update(Dashboard Widget Drag): shows hidden widget when dragging the widget on the dashboard

This commit is contained in:
SimonGschnell
2025-08-18 10:21:18 +02:00
parent e46f46c95b
commit f695d8b66a
+2
View File
@@ -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);