fix(core): unwrap blur fn

This commit is contained in:
braks
2023-07-25 08:49:40 +02:00
committed by Braks
parent 814d5edb26
commit ac86b77b89

View File

@@ -42,6 +42,8 @@ export function handleNodeClick(
} else if (unselect || (node.selected && multiSelectionActive)) {
removeSelectedNodes([node])
nextTick(nodeEl.blur)
nextTick(() => {
nodeEl.blur()
})
}
}