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