From 97369f3775b140f342464c7e71d9aaf2edef39f1 Mon Sep 17 00:00:00 2001 From: chris Houseknecht Date: Mon, 20 Jan 2014 18:54:04 -0500 Subject: [PATCH] AC-946 don't refresh hosts when clicking group collapse/expand. --- awx/ui/static/js/controllers/Inventories.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx/ui/static/js/controllers/Inventories.js b/awx/ui/static/js/controllers/Inventories.js index 28640ecd65..cbf1921ce2 100644 --- a/awx/ui/static/js/controllers/Inventories.js +++ b/awx/ui/static/js/controllers/Inventories.js @@ -461,9 +461,6 @@ function InventoriesEdit ($scope, $location, $routeParams, $compile, GenerateLis $scope.toggle = function(tree_id) { // Expand/collapse nodes - if (tree_id !== $scope.selected_tree_id) { - $scope.showHosts(tree_id, Find({ list: $scope.groups, key: 'id', val: tree_id }).group_id, false); - } ToggleChildren({ scope: $scope, list: list, id: tree_id }); }