Change sort order for 'lastlogin' and 'created' sorts
This commit is contained in:
parent
b971876795
commit
226c261505
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue