dashboard: sort by location in app list by default

This commit is contained in:
Johannes Zellner
2024-06-21 21:18:22 +02:00
parent 57cf0ec074
commit ef1431f89b

View File

@@ -308,7 +308,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
$scope.setView(localStorage.appsView);
$scope.orderBy = localStorage.appsOrderBy;
$scope.orderBy = localStorage.appsOrderBy || 'location';
$scope.orderByReverse = !!localStorage.appsOrderByReverse;
$scope.showFilter = !!localStorage.appsShowFilter;