multicloud_rule_manager 1.1.44 → 1.1.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -13,15 +13,14 @@ export default {
|
|
|
13
13
|
function buildNodes(children) {
|
|
14
14
|
if (!Array.isArray(children) || children.length === 0) return [];
|
|
15
15
|
|
|
16
|
-
const sorted = (children);
|
|
17
16
|
|
|
18
17
|
return sorted.map(child => {
|
|
19
|
-
|
|
18
|
+
var template = {
|
|
20
19
|
name: child.name || "NO_NAME"
|
|
21
20
|
};
|
|
22
21
|
|
|
23
22
|
if (Array.isArray(child.map_object_items)) {
|
|
24
|
-
for (const item of
|
|
23
|
+
for (const item of child.map_object_items) {
|
|
25
24
|
|
|
26
25
|
if (!item.system_record) {
|
|
27
26
|
var ultimoNodo = {
|