mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix outliner for subflow addition
This commit is contained in:
parent
fbd911ed27
commit
bc3683d8f6
@ -346,6 +346,10 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
if (!parent) {
|
if (!parent) {
|
||||||
globalConfigNodes.treeList.addChild(existingObject);
|
globalConfigNodes.treeList.addChild(existingObject);
|
||||||
} else {
|
} else {
|
||||||
|
if (empties[parent]) {
|
||||||
|
empties[parent].treeList.remove();
|
||||||
|
delete empties[parent];
|
||||||
|
}
|
||||||
objects[parent].treeList.addChild(existingObject)
|
objects[parent].treeList.addChild(existingObject)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user