diff --git a/frontend/app/mstore/types/filterSeries.ts b/frontend/app/mstore/types/filterSeries.ts index fa693a2d4..46d6f6472 100644 --- a/frontend/app/mstore/types/filterSeries.ts +++ b/frontend/app/mstore/types/filterSeries.ts @@ -24,7 +24,7 @@ export default class FilterSeries { fromJson(json) { this.seriesId = json.seriesId this.name = json.name - this.filter = new Filter().fromJson(json.filter) + this.filter = new Filter().fromJson(json.filter || { filters: [] }) return this }