mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
fix(editor): Close node creator when clicking on new canvas (no-changelog) (#10086)
This commit is contained in:
parent
2c710ac7d2
commit
a04c4335da
|
@ -1026,6 +1026,7 @@ async function checkAndInitDebugMode() {
|
||||||
function onClickPane(position: CanvasNode['position']) {
|
function onClickPane(position: CanvasNode['position']) {
|
||||||
lastClickPosition.value = [position.x, position.y];
|
lastClickPosition.value = [position.x, position.y];
|
||||||
canvasStore.newNodeInsertPosition = [position.x, position.y];
|
canvasStore.newNodeInsertPosition = [position.x, position.y];
|
||||||
|
uiStore.isCreateNodeActive = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue