refactor(Dashboard dragging): removes dragging flag from the draggable state

This commit is contained in:
SimonGschnell
2025-06-05 11:42:21 +02:00
parent 68b6402981
commit 2821339c0a
+1 -1
View File
@@ -82,7 +82,7 @@ export default {
@drag="$emit('dragging',$event)"
@touchmove="touchMove"
@dragend="$emit('endDrag', $event); dragging = false"
:draggable="active && !item.placeholder && dragging">
:draggable="active && !item.placeholder">
<slot v-bind="item"></slot>
</div>`
}