Fix agenda status filter

Fixes an issue where the status filter in the agenda list did not do
nothing
This commit is contained in:
Sean 2019-03-11 11:00:35 +01:00
parent d10dfb0915
commit 8ca1a4256c
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 }]
}
];