sort invites most recent first
This commit is contained in:
parent
fd454f1e20
commit
87defbfb51
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ export class InviteTileViewModel extends BaseTileViewModel {
|
|||
if (parentComparison !== 0) {
|
||||
return parentComparison;
|
||||
}
|
||||
return this._invite.timestamp - other._invite.timestamp;
|
||||
return other._invite.timestamp - this._invite.timestamp;
|
||||
}
|
||||
|
||||
get name() {
|
||||
|
|
Reference in a new issue