From f373e34f0cff37d7f804e87ed45781ee9c52acd4 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 7 Dec 2021 12:08:13 -0500 Subject: [PATCH] LP#1942220: bump up hardcoded LI retrieval limit back to 10000 Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/acq/lineitem/lineitem-list.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/acq/lineitem/lineitem-list.component.ts b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/lineitem-list.component.ts index 515e236c5e..90c63e4875 100644 --- a/Open-ILS/src/eg2/src/app/staff/acq/lineitem/lineitem-list.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/lineitem-list.component.ts @@ -257,7 +257,7 @@ export class LineitemListComponent implements OnInit { this.lineitemIds = []; const searchTerms = {}; - const opts = { id_list: true, limit: 1000 }; + const opts = { id_list: true, limit: 10000 }; if (this.picklistId) { Object.assign(searchTerms, { jub: [ { picklist: this.picklistId } ] }); -- 2.11.0