@everymatrix/helper-filters 0.1.23 → 1.13.4

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.
@@ -100,6 +100,7 @@ export class HelperFilters {
100
100
  this.modalCloseEvent();
101
101
  this.showClearButton = true;
102
102
  this.filterSelectionHandler(this.filterData);
103
+ console.log(this.showClearButton);
103
104
  }
104
105
  resetSearch() {
105
106
  this.showClearButton = false;
@@ -119,6 +120,7 @@ export class HelperFilters {
119
120
  return (h("div", { class: "HelperFilters", ref: el => this.stylingContainer = el },
120
121
  h("div", { class: "FilterButtonsWrapper" },
121
122
  h("button", { class: "FilterOpen", onClick: () => this.toggleFilterModal() }, translate('filterOpen', this.language)),
123
+ console.log('in filter Open', this.showClearButton, this.quickFiltersActive),
122
124
  (this.showClearButton || this.quickFiltersActive) ?
123
125
  h("button", { class: "FilterClear", onClick: () => this.resetSearch() }, translate('filterClear', this.language))
124
126
  :