update orderby in index

This commit is contained in:
David Levin 2019-01-23 10:08:27 -08:00
parent e7a20b4216
commit 4c18267408
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export default class CustomersReport extends Component {
render() { render() {
const { query, path } = this.props; const { query, path } = this.props;
const tableQuery = { const tableQuery = {
orderby: 'date_registered', orderby: 'date_last_active',
order: 'desc', order: 'desc',
...query, ...query,
}; };