mirror of https://github.com/node-red/node-red.git
Merge pull request #4060 from node-red-hitachi/fix-empty-group-on-outliner
Fix to add empty marker to empty grouppull/4011/head
commit
06e35baeaa
|
@ -617,6 +617,9 @@ RED.sidebar.info.outliner = (function() {
|
|||
objects[n.id].children = missingParents[n.id];
|
||||
delete missingParents[n.id]
|
||||
}
|
||||
if (objects[n.id].children.length === 0) {
|
||||
objects[n.id].children.push(getEmptyItem(n.id));
|
||||
}
|
||||
}
|
||||
var parent = n.g||n.z||"__global__";
|
||||
|
||||
|
|
Loading…
Reference in New Issue