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 committed by John Mitchell
parent ebdf0e49b5
commit b3d3a6e590

View File

@ -87,9 +87,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');
};