7525-devToTest #419
|
@ -96,7 +96,7 @@ function getNodeIds(node) {
|
|||
let ids = [];
|
||||
if (node.id) ids.push(node.id);
|
||||
|
||||
const children = node.child || node.children;
|
||||
const children = node.childs || node.children;
|
||||
if (children) {
|
||||
children.forEach((child) => {
|
||||
ids = ids.concat(getNodeIds(child));
|
||||
|
|
Loading…
Reference in New Issue