Fix recursive rendering when panning

This commit is contained in:
thepaperpilot 2023-05-11 23:35:23 -05:00
parent c29647ae38
commit 16c3b44094

View file

@ -38,7 +38,7 @@
:nodeType="types[node.type]"
:dragging="unref(draggingNode)"
:dragged="unref(draggingNode) === node ? dragged : undefined"
:hasDragged="hasDragged"
:hasDragged="unref(draggingNode) == null ? false : hasDragged"
:receivingNode="unref(receivingNode)?.id === node.id"
:selectedNode="unref(selectedNode)"
:selectedAction="unref(selectedAction)"