mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Active members list now is ordered.
This commit is contained in:
parent
8b12018e26
commit
089913ff4c
1 changed files with 2 additions and 1 deletions
|
@ -836,7 +836,8 @@ Boards.helpers({
|
|||
},
|
||||
|
||||
activeMembers(){
|
||||
return _.where(this.members, { isActive: true });
|
||||
const members = _.where(this.members, { isActive: true });
|
||||
return _.sortBy(members, 'username');
|
||||
},
|
||||
|
||||
activeOrgs() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue