From ef1431f89bd190b4accd797b19831e896ef3ff51 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 21 Jun 2024 21:18:22 +0200 Subject: [PATCH] dashboard: sort by location in app list by default --- dashboard/src/views/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/apps.js b/dashboard/src/views/apps.js index 08488f2d1..4236732d8 100644 --- a/dashboard/src/views/apps.js +++ b/dashboard/src/views/apps.js @@ -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;