From ebed99047b3a940075afa00b1f438ebf51b3f3f4 Mon Sep 17 00:00:00 2001 From: chouseknecht Date: Sun, 30 Jun 2013 04:04:03 -0400 Subject: [PATCH] Clicking the Refresh button on Job Events was not automatically expanding parent nodes. Fixed. Refresh now re-querries the API, updates the page and expands all nodes -the same as initial page load. --- awx/ui/static/js/controllers/JobEvents.js | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/ui/static/js/controllers/JobEvents.js b/awx/ui/static/js/controllers/JobEvents.js index 9bf73b441b..582f4e6e63 100644 --- a/awx/ui/static/js/controllers/JobEvents.js +++ b/awx/ui/static/js/controllers/JobEvents.js @@ -118,6 +118,7 @@ function JobEventsList ($scope, $rootScope, $location, $log, $routeParams, Rest, } scope.refresh = function() { + scope.expand = true; scope.search(list.iterator); }