From 85084231966353d5b2518d1fe3ad62969bddab2d Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 10 Apr 2022 18:12:54 +0200 Subject: [PATCH] docs: fix missing handles in new connection --- docs/components/home/Home.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/components/home/Home.vue b/docs/components/home/Home.vue index 62a55562..d1e6ffa6 100644 --- a/docs/components/home/Home.vue +++ b/docs/components/home/Home.vue @@ -97,6 +97,8 @@ onPaneReady(({ fitView }) => { const newEdge = updateEdge(getEdge.value(edgeId.value)!, { source: 'examples', target: 'documentation', + targetHandle: null, + sourceHandle: null, }) if (newEdge) edgeId.value = newEdge.id } else { @@ -122,6 +124,8 @@ onPaneReady(({ fitView }) => { const newEdge = updateEdge(getEdge.value(edgeId.value)!, { source: 'intro', target: 'documentation', + targetHandle: null, + sourceHandle: null, }) if (newEdge) edgeId.value = newEdge.id }