mirror of
https://github.com/ansible/awx.git
synced 2026-01-19 13:41:28 -03:30
Merge pull request #2848 from kensible/2841-portal-job-sort-order
Default to descending order on job view toggle
This commit is contained in:
commit
a9f1c12ac8
@ -52,17 +52,16 @@ export function PortalModeJobsController($scope, $rootScope, GetBasePath, Genera
|
||||
|
||||
};
|
||||
|
||||
|
||||
$scope.filterUser = function(){
|
||||
$scope.activeFilter = 'user';
|
||||
defaultUrl = GetBasePath('jobs') + '?created_by=' + $rootScope.current_user.id;
|
||||
init();
|
||||
init(true);
|
||||
};
|
||||
|
||||
$scope.filterAll = function(){
|
||||
$scope.activeFilter = 'all';
|
||||
defaultUrl = GetBasePath('jobs');
|
||||
init();
|
||||
init(true);
|
||||
};
|
||||
|
||||
$scope.refresh = function(){
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user