mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 18:48:12 -03:30
Default to descending order on job view toggle
This commit is contained in:
@@ -52,17 +52,16 @@ export function PortalModeJobsController($scope, $rootScope, GetBasePath, Genera
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
$scope.filterUser = function(){
|
$scope.filterUser = function(){
|
||||||
$scope.activeFilter = 'user';
|
$scope.activeFilter = 'user';
|
||||||
defaultUrl = GetBasePath('jobs') + '?created_by=' + $rootScope.current_user.id;
|
defaultUrl = GetBasePath('jobs') + '?created_by=' + $rootScope.current_user.id;
|
||||||
init();
|
init(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.filterAll = function(){
|
$scope.filterAll = function(){
|
||||||
$scope.activeFilter = 'all';
|
$scope.activeFilter = 'all';
|
||||||
defaultUrl = GetBasePath('jobs');
|
defaultUrl = GetBasePath('jobs');
|
||||||
init();
|
init(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.refresh = function(){
|
$scope.refresh = function(){
|
||||||
|
|||||||
Reference in New Issue
Block a user