mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
feat(editor): Overhaul node insert position computation in new canvas (no-changelog) (#10637)
This commit is contained in:
@@ -101,8 +101,8 @@ watch(
|
||||
);
|
||||
|
||||
// Close node creator when the last view stacks is closed
|
||||
watch(viewStacksLength, (viewStacksLength) => {
|
||||
if (viewStacksLength === 0) {
|
||||
watch(viewStacksLength, (value) => {
|
||||
if (value === 0) {
|
||||
emit('closeNodeCreator');
|
||||
setShowScrim(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user