@annalib/anna-core 7.3.16 → 7.3.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1423,7 +1423,8 @@ class AnnaFilterService {
1423
1423
  if (this.sliderSet.has(key)) {
1424
1424
  filteredData = filteredData.filter((obj) => obj[key] >= value.min && obj[key] <= value.max);
1425
1425
  }
1426
- else if (key === "startDate" || key === "endDate" || key === "AirDate" || key === "flightStartDate" || key === "flightEndDate" || key == "date" || key == "revisionStartDate") {
1426
+ else if (key === "startDate" || key === "endDate" || key === "AirDate" || key === "flightStartDate" || key === "flightEndDate" || key == "date" || key == "revisionStartDate"
1427
+ || key == "Week") {
1427
1428
  filteredData = filteredData.filter((obj) => this.isObjectInTheRange(obj, value, key));
1428
1429
  }
1429
1430
  else if (key === "period") {