chore(core): cleanup

This commit is contained in:
braks
2023-11-08 08:27:12 +01:00
committed by Braks
parent 7cc798adae
commit 75cb0c9b1e
2 changed files with 6 additions and 6 deletions
@@ -15,9 +15,9 @@ const {
...props
} = defineProps<HandleProps>()
const type = toRef(props, 'type', 'source')
const type = toRef(() => props.type ?? 'source')
const isValidConnection = toRef(props, 'isValidConnection', undefined)
const isValidConnection = toRef(() => props.isValidConnection ?? null)
const {
connectionStartHandle,