diff --git a/client/src/app/core/ui-services/base-filter-list.service.ts b/client/src/app/core/ui-services/base-filter-list.service.ts index 2fec27228..8efd0700e 100644 --- a/client/src/app/core/ui-services/base-filter-list.service.ts +++ b/client/src/app/core/ui-services/base-filter-list.service.ts @@ -150,12 +150,7 @@ export abstract class BaseFilterListService { return storedFilter.every(filter => { // Interfaces do not exist at runtime. Manually check if the // Required information of the interface are present - return ( - filter.hasOwnProperty('options') && - filter.hasOwnProperty('property') && - filter.options.length && - !!filter.property - ); + return filter.hasOwnProperty('options') && filter.hasOwnProperty('property') && !!filter.property; }); } else { return false;