mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
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:
committed by
John Mitchell
parent
ebdf0e49b5
commit
b3d3a6e590
@@ -87,9 +87,7 @@ export function JobsListController ($rootScope, $log, $scope, $compile, $statePa
|
|||||||
});
|
});
|
||||||
|
|
||||||
$scope.refreshJobs = function() {
|
$scope.refreshJobs = function() {
|
||||||
jobs_scope.search('queued_job');
|
jobs_scope.search('all_job');
|
||||||
jobs_scope.search('running_job');
|
|
||||||
jobs_scope.search('completed_job');
|
|
||||||
scheduled_scope.search('schedule');
|
scheduled_scope.search('schedule');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user