There was an error while loading. Please reload this page.
1 parent 2eca683 commit 3c2fc3eCopy full SHA for 3c2fc3e
1 file changed
mapBuilder/www/js/components/LayerStore.js
@@ -206,6 +206,10 @@ export class LayerStore extends HTMLElement {
206
children.forEach((child) => {
207
child.repository = element.getRepository();
208
child.project = element.getProject();
209
+ // Check if the child has children and continue update
210
+ if (child.hasOwnProperty('children') && child.children.length > 0) {
211
+ updateChildrenAttributes(child.children, element);
212
+ }
213
});
214
};
215
0 commit comments