fix: enable draggable and resizable widgets on dashboard
This commit is contained in:
parent
fa55917659
commit
e3770bc7c5
|
|
@ -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;
|
||||
});
|
||||
Loading…
Reference in New Issue