mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 15:09:32 -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++) {
|
||||
if (set[i].parent == set[node].id) {
|
||||
set[i]['show'] = true;
|
||||
if (set[i].related.children) {
|
||||
expand(i);
|
||||
}
|
||||
//if (set[i].related.children) {
|
||||
// expand(i);
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user