Support pageSize customization via localStorage

This commit is contained in:
Johannes Zellner
2023-05-10 13:52:41 +02:00
parent 5274e1c454
commit 318285cb07
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ angular.module('Application').controller('DomainsController', ['$scope', '$locat
$scope.domains = [];
$scope.ready = false;
$scope.domainSearchString = '';
$scope.pageSize = 10;
$scope.pageSize = localStorage.cloudronPageSize || 10;
$scope.currentPage = 1;
$scope.showNextPage = function () {