We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e42897e commit 1e786a9Copy full SHA for 1e786a9
packages/core/src/utils/handle.ts
@@ -126,7 +126,10 @@ export function isValidHandle(
126
// because it could be that the center of another handle is closer to the mouse pointer than the handle below the cursor
127
const handleToCheck = handleBelow?.classList.contains('vue-flow__handle') ? handleBelow : handleDomNode
128
129
- const result = defaultValidHandleResult()
+ const result = {
130
+ ...defaultValidHandleResult(),
131
+ handleDomNode: handleToCheck,
132
+ }
133
134
if (handleToCheck) {
135
const handleType = getHandleType(undefined, handleToCheck)
0 commit comments