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:
parent
9024c793df
commit
535ddff595
3 changed files with 16 additions and 16 deletions
|
@ -298,7 +298,7 @@ export default class extends BaseModel {
|
|||
static getOrderedUndeletedQuerySet() {
|
||||
return this.filter({
|
||||
deletedAt: null,
|
||||
}).orderBy('createdAt');
|
||||
}).orderBy((user) => user.name.toLocaleLowerCase());
|
||||
}
|
||||
|
||||
getOrderedProjectManagersQuerySet() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue