Skip to content

Commit

Permalink
Merge pull request #1694 from nextcloud/stable10-backport-1679
Browse files Browse the repository at this point in the history
[stable10] Improve user list rendering perf by not resorting after every add (#2
  • Loading branch information
rullzer authored Oct 11, 2016
2 parents 29b4611 + 706317a commit c7e40d0
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 @@ -396,7 +396,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 c7e40d0

Please sign in to comment.