Browse Source

decrease initial users to load to 50

Prevents timeouts on the initial loading of users. proper fix will be in https://github.com/owncloud/core/pull/10994
Workaround for https://github.com/owncloud/core/issues/24734
tags/v9.0.1beta2
Jörn Friedrich Dreyer 8 years ago
parent
commit
2989584b45
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      settings/js/users/users.js

+ 1
- 1
settings/js/users/users.js View File

@@ -14,7 +14,7 @@ var UserList = {
availableGroups: [],
offset: 0,
usersToLoad: 10, //So many users will be loaded when user scrolls down
initialUsersToLoad: 250, //initial number of users to load
initialUsersToLoad: 50, //initial number of users to load
currentGid: '',
filter: '',


Loading…
Cancel
Save