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.
2 parents f77e24e + 4d63c5e commit 3e8ea39Copy full SHA for 3e8ea39
settings/js/settings.js
@@ -55,7 +55,9 @@ OC.Settings = _.extend(OC.Settings, {
55
selection = _.map((groups || []).split('|').sort(), function(groupId) {
56
return {
57
id: groupId,
58
- displayname: results.find(group => group.id === groupId).displayname
+ displayname: results.find(function (group) {
59
+ return group.id === groupId;
60
+ }).displayname
61
};
62
});
63
} else if (groups) {
0 commit comments