diff --git a/_attachments/script/ReportsBrowserControllers.js b/_attachments/script/ReportsBrowserControllers.js index 3cb2c23..f9d0154 100644 --- a/_attachments/script/ReportsBrowserControllers.js +++ b/_attachments/script/ReportsBrowserControllers.js @@ -30,10 +30,10 @@ console.log("Init ReportsBrowserCtrl"); $scope.paginator = { - pageSize: 15, + pageSize: 500, currentPage: 0 }; - $scope.pageSizeList = [15, 30, 50, 100]; + $scope.pageSizeList = [15, 30, 50, 100, 500]; $scope.previousStartKeys = []; $scope.selectedReport = ""; diff --git a/_attachments/script/app.js b/_attachments/script/app.js index 17351c5..f3b81b5 100644 --- a/_attachments/script/app.js +++ b/_attachments/script/app.js @@ -200,9 +200,9 @@ compile: function compile(tElement, tAttrs, transclude) { return { pre: function preLink(scope, iElement, iAttrs, controller) { - scope.pageSizeList = [15, 30, 50, 100]; + scope.pageSizeList = [15, 30, 50, 100, 500]; scope.paginator = { - pageSize: 15, + pageSize: 500, currentPage: 0 };