Update dependencies #83

Open
thepaperpilot wants to merge 34 commits from thepaperpilot/Profectus:feat/update-deps into main
Showing only changes of commit 5b33a0fceb - Show all commits

View file

@ -160,7 +160,7 @@ export function setupDraggableNode<T>(options: {
},
drag: function (e: MouseEvent | TouchEvent) {
const panZoomInstance = options.board.value?.panZoomInstance as PanZoom | undefined;
if (panZoomInstance == null) {
if (panZoomInstance == null || nodeBeingDragged.value == null) {
return;
}
@ -199,10 +199,8 @@ export function setupDraggableNode<T>(options: {
hasDragged.value = true;
}
if (nodeBeingDragged.value != null) {
e.preventDefault();
e.stopPropagation();
}
e.preventDefault();
e.stopPropagation();
}
};
return result;