@recursyve/nice-data-filter-kit 14.3.5 → 14.3.6

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.
@@ -3362,7 +3362,7 @@ class NiceAdvancedFiltersButtonComponent {
3362
3362
  this.shouldShowAdvancedFilters$ = this.query.selectSubState("showAdvancedFilters");
3363
3363
  this.hasParameters$ = this.query.selectFilterParameters().pipe(withLatestFrom(this.query.selectFilterConfig()), map(([parameter, config]) => !!parameter
3364
3364
  .rules
3365
- ?.filter((rule) => config.some((conf) => conf.id === rule.rules[0].id))
3365
+ ?.filter((rule) => config.some((conf) => conf?.id === rule.rules[0]?.id))
3366
3366
  ?.length));
3367
3367
  }
3368
3368
  clickToggleShowAdvancedFilters() {