Merge pull request #4494 from tsiegleauq/agenda-filter-opendone

Fix agenda status filter
This commit is contained in:
Emanuel Schütze 2019-03-11 12:23:24 +01:00 committed by GitHub
commit 8ce8286ea2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ export class AgendaFilterListService extends BaseFilterListService<Item, ViewIte
},
{
label: 'Status',
property: 'done',
property: 'closed',
options: [{ label: 'Open', condition: false }, { label: 'Closed', condition: true }]
}
];