Finish reimbursement loading and sync

This commit is contained in:
2020-10-30 15:04:24 +01:00
parent ec50e7deef
commit 7b1c3c813c
5 changed files with 61 additions and 40 deletions
@@ -2,6 +2,6 @@ import Component from '@glimmer/component';
import { sort } from '@ember/object/computed';
export default class ReimbursementListComponent extends Component {
itemSorting = Object.freeze(['id:desc']);
itemSorting = Object.freeze(['pendingStatus:asc', 'id:desc']);
@sort('args.items', 'itemSorting') itemsSorted;
}