Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/groups/groups.list.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
Expand Down