Skip to content

Commit 244274f

Browse files
committed
chore(core): cleanup
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
1 parent 18f1c29 commit 244274f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/core/src/components/ConnectionLine/ConnectionLine.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const handleId = $computed(() => connectionStartHandle!.handleId)
3131
3232
const type = computed(() => connectionStartHandle!.type)
3333
34-
const targetNode = $computed(() => (connectionEndHandle?.handleId && findNode(connectionEndHandle.handleId)) || null)
34+
const targetNode = $computed(() => (connectionEndHandle?.handleId && findNode(connectionEndHandle.nodeId)) || null)
3535
3636
const sourceHandle = $computed(
3737
() =>
@@ -42,6 +42,7 @@ const sourceHandle = $computed(
4242
)
4343
4444
const targetHandle = $computed(() => {
45+
console.log(connectionEndHandle)
4546
return (
4647
(targetNode &&
4748
connectionEndHandle?.handleId &&

0 commit comments

Comments
 (0)