Skip to content

Commit

Permalink
RDISCROWD-7841 - fix loading icon hanging
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkle committed Dec 11, 2024
1 parent 53f7743 commit 03991cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/src/components/setting/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export default {
const users = isIds ? usersOrIds.map(id => this.users[id]) : usersOrIds;
// Sort the users by their last name.
return users.slice().sort((a, b) => {
return users.filter(u => u).slice().sort((a, b) => {
return a.last_name.localeCompare(b.last_name, undefined, { sensitivity: 'base' });
});
},
Expand Down

0 comments on commit 03991cf

Please sign in to comment.