@paperless/angular 0.1.0-alpha.379 → 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) {
@@ -2889,7 +2891,7 @@ let Table = class Table {
2889
2891
  this.hideOnSinglePage = true;
2890
2892
  /* Empty state start */
2891
2893
  this.emptyStateType = 'no_filter';
2892
- this.emptyStateIllustration = 'empty-state-overview';
2894
+ this.emptyStateIllustration = 'empty-state-add';
2893
2895
  this.enableEmptyStateAction = true;
2894
2896
  this.emptyStateFilteredIllustration = 'empty-state-search';
2895
2897
  /**