fix(Dashboard Drag Placeholder): doesn't allow placeholder items to be dragged anymore and keeps the height and width of a widget when resizing the grid of the dashboard

This commit is contained in:
SimonGschnell
2025-03-31 14:56:41 +02:00
parent 51f4e1e57d
commit 232da256ac
2 changed files with 16 additions and 5 deletions
+4 -3
View File
@@ -12,7 +12,8 @@ export default {
"startResize",
"dragging",
"endDrag",
"dropDrag"
"dropDrag",
"item"
],
data() {
return {
@@ -63,12 +64,12 @@ export default {
template: `
<div class="drop-grid-item"
@mousedown="registerDragAction"
@touchstart="tryDragStart($event, item)"
@touchstart.prevent="tryDragStart($event, item)"
@touchend="touchDragEnd"
@dragstart="tryDragStart($event, item)"
@drag="$emit('dragging',$event)"
@dragend="$emit('endDrag', $event)"
:draggable="active">
:draggable="active && !item.placeholder">
<slot v-bind="item"></slot>
</div>`
}