7525-devToTest #419

Merged
alexm merged 177 commits from 7525-devToTest into test 2024-06-04 08:06:27 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 66955dbc90 - Show all commits

View File

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