@fluid-topics/ft-filter 1.3.43 → 1.3.45

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.
@@ -74,9 +74,7 @@ class FtFilterLevel extends withI18n(withAriaNotification(FtLitElement)) {
74
74
  if (this.filter) {
75
75
  options = options.filter((o) => o.label.toLowerCase().includes(this.filter.toLowerCase()));
76
76
  }
77
- if (options != this.filteredOptions) {
78
- this.filteredOptions = options;
79
- }
77
+ this.filteredOptions = options;
80
78
  }
81
79
  render() {
82
80
  const limitedOptions = this.filteredOptions.slice(0, this.limit);
@@ -272,6 +270,6 @@ __decorate([
272
270
  state()
273
271
  ], FtFilterLevel.prototype, "displayedPages", void 0);
274
272
  __decorate([
275
- state({ hasChanged })
273
+ state()
276
274
  ], FtFilterLevel.prototype, "filteredOptions", void 0);
277
275
  export { FtFilterLevel };