diff --git a/awx/ui/static/js/helpers/search.js b/awx/ui/static/js/helpers/search.js index 0071a47e04..55c4aa43de 100644 --- a/awx/ui/static/js/helpers/search.js +++ b/awx/ui/static/js/helpers/search.js @@ -451,7 +451,7 @@ angular.module('SearchHelper', ['RestServices', 'Utilities', 'RefreshHelper']) */ scope.search = function (iterator, page, load, calcOnly) { page = page || null; - load = (load) ? true : false; + load = (load || !scope.set || scope.set.length === 0) ? true : false; calcOnly = (calcOnly) ? true : false; if (load) { scope[set] = []; //clear the list array to make sure 'Loading' is the only thing visible on the list