From 9a875430ec01de994e1492b94318e7c871ecf7eb Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Tue, 29 Mar 2022 12:55:41 +0200 Subject: [PATCH] fix(flow): set default prop as undefined for connectOnClick --- src/container/VueFlow/VueFlow.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/container/VueFlow/VueFlow.vue b/src/container/VueFlow/VueFlow.vue index 3b171c5c..4306531f 100644 --- a/src/container/VueFlow/VueFlow.vue +++ b/src/container/VueFlow/VueFlow.vue @@ -21,6 +21,7 @@ const props = withDefaults(defineProps(), { panOnDrag: undefined, applyDefault: undefined, fitViewOnInit: undefined, + connectOnClick: undefined, connectionLineStyle: () => null, }) const emit = defineEmits([...Object.keys(createHooks()), 'update:modelValue', 'update:edges', 'update:nodes'])