1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 23:09:41 +02:00

fix(service-details): fix the ability to sort tasks (#931)

This commit is contained in:
Anthony Lapenna 2017-06-15 22:52:49 +02:00 committed by GitHub
parent b316efe80b
commit d8f8ab785c
2 changed files with 10 additions and 10 deletions

View file

@ -5,8 +5,8 @@ function ($q, $scope, $stateParams, $state, $location, $anchorScroll, ServiceSer
$scope.state = {};
$scope.state.pagination_count = Pagination.getPaginationCount('service_tasks');
$scope.tasks = [];
$scope.sortType = 'Status';
$scope.sortReverse = false;
$scope.sortType = 'Updated';
$scope.sortReverse = true;
$scope.lastVersion = 0;