Changes the order of states in filter

- 'Done' and 'undone' are moved up to top.
This commit is contained in:
GabrielMeyer 2019-09-10 17:05:24 +02:00
parent 6c7db17641
commit 028ce16bb9
1 changed files with 6 additions and 7 deletions

View File

@ -283,22 +283,21 @@ export class MotionFilterListService extends BaseFilterListService<ViewMotion> {
// convert to filter options
if (workflowFilters && workflowFilters.length) {
let workflowOptions: OsFilterOptions = [];
for (const filterDef of workflowFilters) {
workflowOptions.push(filterDef.name);
workflowOptions = workflowOptions.concat(filterDef.filter);
}
// add "done" and "undone"
workflowOptions.push('-');
workflowOptions.push({
label: 'Done',
condition: finalStates
});
workflowOptions.push({
label: this.translate.instant('Undone'),
condition: nonFinalStates
});
workflowOptions.push('-');
for (const filterDef of workflowFilters) {
workflowOptions.push(filterDef.name);
workflowOptions = workflowOptions.concat(filterDef.filter);
}
this.stateFilterOptions.options = workflowOptions;
}