1
0
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:
Hiroyasu Nishiyama 2020-05-16 11:25:55 +09:00
parent fbd911ed27
commit bc3683d8f6

View File

@ -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)
} }
} }