There was an error while loading. Please reload this page.
1 parent 18f1c29 commit 244274fCopy full SHA for 244274f
packages/core/src/components/ConnectionLine/ConnectionLine.vue
@@ -31,7 +31,7 @@ const handleId = $computed(() => connectionStartHandle!.handleId)
31
32
const type = computed(() => connectionStartHandle!.type)
33
34
-const targetNode = $computed(() => (connectionEndHandle?.handleId && findNode(connectionEndHandle.handleId)) || null)
+const targetNode = $computed(() => (connectionEndHandle?.handleId && findNode(connectionEndHandle.nodeId)) || null)
35
36
const sourceHandle = $computed(
37
() =>
@@ -42,6 +42,7 @@ const sourceHandle = $computed(
42
)
43
44
const targetHandle = $computed(() => {
45
+ console.log(connectionEndHandle)
46
return (
47
(targetNode &&
48
connectionEndHandle?.handleId &&
0 commit comments