Change sort order for 'lastlogin' and 'created' sorts

This commit is contained in:
Bryan Ashby 2022-08-16 13:45:39 -06:00
parent b971876795
commit 226c261505
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ function listUsers() {
};
const sortByTimestamp = prop => (left, right) => {
return moment(left[prop]) - moment(right[prop]);
return moment(right[prop]) - moment(left[prop]);
};
let sorter;