Fixing iterator used when jobs list refreshes

it was still using the iterators used when there were four job panes
This commit is contained in:
Jared Tabor
2016-07-15 08:57:41 -07:00
parent c36080e149
commit d39538c7c4

View File

@@ -85,9 +85,7 @@ export function JobsListController ($rootScope, $log, $scope, $compile, $statePa
});
$scope.refreshJobs = function() {
jobs_scope.search('queued_job');
jobs_scope.search('running_job');
jobs_scope.search('completed_job');
jobs_scope.search('all_job');
scheduled_scope.search('schedule');
};