@sinequa/atomic-angular 0.4.19-dev.2 → 0.4.19-dev.3

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.
@@ -8348,7 +8348,8 @@ class AggregationListComponent {
8348
8348
  this.suggests.set([]);
8349
8349
  return;
8350
8350
  }
8351
- const suggests = (await withFetch(() => fetchSuggestField(this.normalizedSearchText(), [this.aggregation()?.column || ""]), this.injector)) || [];
8351
+ const query = this.queryParamsStore.getQuery();
8352
+ const suggests = (await withFetch(() => fetchSuggestField(this.normalizedSearchText(), [this.aggregation()?.column || ""], query), this.injector)) || [];
8352
8353
  this.suggests.set(suggests);
8353
8354
  });
8354
8355
  }
@@ -12898,7 +12899,8 @@ class AggregationTreeComponent {
12898
12899
  this.suggests.set([]);
12899
12900
  return;
12900
12901
  }
12901
- const suggests = (await withFetch(() => fetchSuggestField(this.normalizedSearchText(), [this.aggregation()?.column || ""]), this.injector)) || [];
12902
+ const query = this.queryParamsStore.getQuery();
12903
+ const suggests = (await withFetch(() => fetchSuggestField(this.normalizedSearchText(), [this.aggregation()?.column || ""], query), this.injector)) || [];
12902
12904
  this.suggests.set(suggests);
12903
12905
  });
12904
12906
  effect(() => {