Fixed incorrect var

This commit is contained in:
Tom Butcher 2025-08-22 22:18:50 +01:00
parent 9255f6bbe8
commit bb047651ae

View File

@ -143,7 +143,7 @@ const ObjectSelect = ({
nodeSpecificData = data[node.value] || {} nodeSpecificData = data[node.value] || {}
} }
// Build new tree children only for this specific node // Build new tree children only for this specific node
const treeChildren = buildTreeData( const children = buildTreeData(
nodeSpecificData, nodeSpecificData,
properties.indexOf(node.property) + 1, properties.indexOf(node.property) + 1,
node.parentKeys || [], node.parentKeys || [],