fix value explorer for destructuring

This commit is contained in:
Dmitry Vasilev
2023-12-30 17:27:59 +08:00
parent 212179b788
commit acd24fe5b7
4 changed files with 22 additions and 6 deletions

View File

@@ -1561,7 +1561,7 @@ const update_children_not_rec = (node, children = node.children) => {
}
}
const update_children = node => {
export const update_children = node => {
if(Array.isArray(node)) {
return node.map(update_children)
} else {