From b7f164216d83b253fb5295d2e7df308930adfecd Mon Sep 17 00:00:00 2001 From: Manish <45197181+m-yadav@users.noreply.github.com> Date: Thu, 24 Jun 2021 08:44:20 +0530 Subject: [PATCH] Update groups.list.controller.js Updated perPage from 2000 to 3000 to accomodate all groups in one call --- src/app/groups/groups.list.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/groups/groups.list.controller.js b/src/app/groups/groups.list.controller.js index 0f463d5..2762755 100644 --- a/src/app/groups/groups.list.controller.js +++ b/src/app/groups/groups.list.controller.js @@ -18,9 +18,9 @@ module.controller('permissionmanagement.GroupsListController', [ // list data $scope.groups = []; - // used to get all groups , increased perPage from 1000 to 2000 to accomodate all groups in one call + // used to get all groups , increased perPage from 2000 to 3000 to accomodate all groups in one call $scope.page = 1; - $scope.perPage = 2000; + $scope.perPage = 3000; /* Maps user ids, present in the page, into user handles. */ $scope.users = {};