@recursyve/nice-data-filter-kit 13.0.4 → 13.0.5

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.
@@ -903,15 +903,15 @@ class NiceBaseListService {
903
903
  const { disabled } = this.store.getValue();
904
904
  try {
905
905
  const filterParameters = this.mergeParameters(parameters);
906
+ if (filterParameters) {
907
+ this.setParameters(filterParameters, disabled ? false : updateQueryParams);
908
+ }
906
909
  if (!disabled) {
907
910
  this.store.setLoading(true);
908
911
  this.loadingData = true;
909
912
  const result = await firstValueFrom(this.filterService.filter(this.getParameters(filterParameters)));
910
913
  this.store.setResult(result, reset);
911
914
  }
912
- if (filterParameters) {
913
- this.setParameters(filterParameters, disabled ? false : updateQueryParams);
914
- }
915
915
  }
916
916
  catch (e) {
917
917
  this.store.setError(e);