We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff1f04 commit 5322d30Copy full SHA for 5322d30
1 file changed
apps/files_external/js/settings.js
@@ -93,8 +93,8 @@ function addSelect2 ($elements, userListLimit) {
93
var userCount = 0; // users is an object
94
95
// add groups
96
- $.each(data.groups, function(i, group) {
97
- results.push({name:group+'(group)', displayname:group, type:'group' });
+ $.each(data.groups, function(gid, group) {
+ results.push({name:gid+'(group)', displayname:group, type:'group' });
98
});
99
// add users
100
$.each(data.users, function(id, user) {
0 commit comments