@paperless/angular 0.1.0-alpha.380 → 0.1.0-alpha.381

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.
@@ -2020,7 +2020,9 @@ const createFormFilters = (values, quickFilters, quickFilterKey) => {
2020
2020
  let quickFilter = null;
2021
2021
  for (const key of Object.keys(values)) {
2022
2022
  const value = values[key];
2023
- if (key !== quickFilterKey && !value?.length) {
2023
+ if (key !== quickFilterKey &&
2024
+ !(value instanceof Date) &&
2025
+ !value?.length) {
2024
2026
  continue;
2025
2027
  }
2026
2028
  if (quickFilterKey && key === quickFilterKey) {