fix: enable draggable and resizable widgets on dashboard

This commit is contained in:
Siliconlive 2026-06-24 18:25:04 +05:30
parent fa55917659
commit e3770bc7c5
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
// Fix for issue #12245: dashboard widgets cannot be dragged or resized
var dashboardWidgets = document.querySelectorAll('.dashboard-widget');
dashboardWidgets.forEach(function(widget) {
widget.draggable = true;
widget.resizable = true;
});