Skip to content

Commit

Permalink
Merge pull request #1696 from nextcloud/stable9-backport-1679
Browse files Browse the repository at this point in the history
[stable9] Improve user list rendering perf by not resorting after every add (#2
  • Loading branch information
rullzer authored Oct 11, 2016
2 parents 85cca95 + 1bc2da1 commit d7dbec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings/js/users/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ var UserList = {
if(UserList.has(user.name)) {
return true;
}
var $tr = UserList.add(user, user.lastLogin, false, user.backend);
var $tr = UserList.add(user, false);
trs.push($tr);
loadedUsers++;
});
Expand Down

0 comments on commit d7dbec5

Please sign in to comment.