fix(onNodeDragStop): nodes are set to dragging=false

This commit is contained in:
moklick
2024-07-09 11:21:31 +02:00
parent 22a80cdfac
commit f722e2f0a3
5 changed files with 7 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
## 12.0.0-next.28
- add `paneDistanceClick` prop (max distance between mousedown/up that will trigger a click)
- returned nodes in `onNodeDragStop` are set to `dragging=false`
## 12.0.0-next.27
-1
View File
@@ -134,7 +134,6 @@ const createStore = ({
const changes = [];
for (const [id, dragItem] of nodeDragItems) {
// @todo add expandParent to drag item so that we can get rid of the look up here
const change: NodeChange = {
id,
type: 'position',