1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-25 16:19:47 +02:00

fix: Order users by name (#806)

This commit is contained in:
Emmanuel Guyot 2024-07-15 15:26:26 +02:00 committed by GitHub
parent 9024c793df
commit 535ddff595
3 changed files with 16 additions and 16 deletions

View file

@ -298,7 +298,7 @@ export default class extends BaseModel {
static getOrderedUndeletedQuerySet() {
return this.filter({
deletedAt: null,
}).orderBy('createdAt');
}).orderBy((user) => user.name.toLocaleLowerCase());
}
getOrderedProjectManagersQuerySet() {