Skip to content

Commit

Permalink
Merge pull request #1679 from nextcloud/downstream-26282
Browse files Browse the repository at this point in the history
Improve user list rendering perf by not resorting after every add (#2
  • Loading branch information
rullzer authored Oct 10, 2016
2 parents ada4d6c + e3717fd commit 1f0bc69
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 @@ -398,7 +398,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 1f0bc69

Please sign in to comment.