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 2c2fdf9 commit b386c85Copy full SHA for b386c85
packages/core/src/composables/useHandle.ts
@@ -46,6 +46,7 @@ export function useHandle({
46
connectionRadius,
47
connectOnClick,
48
connectionClickStartHandle,
49
+ connectionEndHandle,
50
nodesConnectable,
51
autoPanOnConnect,
52
findNode,
@@ -197,7 +198,7 @@ export function useHandle({
197
198
}
199
200
function onPointerUp(event: MouseTouchEvent) {
- if ((closestHandle || handleDomNode) && connection && isValid) {
201
+ if ((closestHandle || handleDomNode || connectionEndHandle.value) && connection && isValid) {
202
if (!onEdgeUpdate) {
203
emits.connect(connection)
204
} else {
0 commit comments