adb-shared 6.2.14 → 6.2.15
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.
package/fesm2022/adb-shared.mjs
CHANGED
|
@@ -3380,7 +3380,7 @@ class AdbMapFilters {
|
|
|
3380
3380
|
this.filters = config.filters;
|
|
3381
3381
|
}
|
|
3382
3382
|
ngOnInit() {
|
|
3383
|
-
const lists$ = this.http.get(this.config.taxaListsApi);
|
|
3383
|
+
const lists$ = this.http.get(this.config.taxaListsApi, { params: { limit: -1 } });
|
|
3384
3384
|
const combined$ = combineLatest([this.activatedRoute.paramMap, this.activatedRoute.queryParamMap, lists$])
|
|
3385
3385
|
.pipe(map$1(results => ({ params: results[0], qParams: results[1], lists: results[2] })), debounceTime$1(0));
|
|
3386
3386
|
this.subscriptions.add(combined$.subscribe(result => {
|