Skip to content

Commit e9e807a

Browse files
Fix security panel to show more than 20 users/roles
1 parent 820b271 commit e9e807a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/controllers/users-controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ UserModule.controller("UsersController", ['$scope', '$rootScope', '$routeParams'
5454
language: 'sql',
5555
verbose: false,
5656
text: selectAllUsers,
57-
limit: $scope.limit,
57+
limit: -1,
5858
shallow: false
5959
}, function (data) {
6060
$scope.usersResult = data.result;
@@ -89,7 +89,7 @@ UserModule.controller("UsersController", ['$scope', '$rootScope', '$routeParams'
8989
language: 'sql',
9090
verbose: false,
9191
text: selectAllRoles,
92-
limit: $scope.limit,
92+
limit: -1,
9393
shallow: false
9494
}, function (data) {
9595
$scope.roles = data.result;

0 commit comments

Comments
 (0)