@recursyve/nice-data-filter-kit 14.5.2 → 14.5.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.
@@ -3062,13 +3062,13 @@ class NiceFilterViewService {
3062
3062
  }
3063
3063
  }
3064
3064
  async filter() {
3065
- const { filterParameters, disabled } = this.store.getValue();
3065
+ const { filterParameters, disabled, queryParams } = this.store.getValue();
3066
3066
  if (disabled) {
3067
3067
  return;
3068
3068
  }
3069
3069
  try {
3070
3070
  this.store.setLoading(true);
3071
- const result = await firstValueFrom(this.filterService.filter(this.store.getParameters(filterParameters)));
3071
+ const result = await firstValueFrom(this.filterService.filter(this.store.getParameters(filterParameters), { params: queryParams }));
3072
3072
  this.store.setResult(result);
3073
3073
  }
3074
3074
  catch (e) {