mirror of
https://github.com/ansible/awx.git
synced 2026-05-17 06:17:36 -02:30
When manually expanding a node, do not automatically expand all children.
This commit is contained in:
@@ -25,9 +25,9 @@ angular.module('ChildrenHelper', ['RestServices', 'Utilities'])
|
|||||||
for (var i = node + 1; i < set.length; i++) {
|
for (var i = node + 1; i < set.length; i++) {
|
||||||
if (set[i].parent == set[node].id) {
|
if (set[i].parent == set[node].id) {
|
||||||
set[i]['show'] = true;
|
set[i]['show'] = true;
|
||||||
if (set[i].related.children) {
|
//if (set[i].related.children) {
|
||||||
expand(i);
|
// expand(i);
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user