Minor cleanup
This commit is contained in:
@ -201,6 +201,12 @@ export class MembersList {
|
||||
for (const m of list) {
|
||||
this.map.set(m.id, m);
|
||||
}
|
||||
|
||||
this.list.sort((a, b) =>
|
||||
a.invertedFullName
|
||||
.toLowerCase()
|
||||
.localeCompare(b.invertedFullName.toLocaleLowerCase())
|
||||
);
|
||||
}
|
||||
|
||||
public get isEmpty(): boolean {
|
||||
|
Reference in New Issue
Block a user