From: Galen Charlton Date: Tue, 7 Dec 2021 17:08:13 +0000 (-0500) Subject: LP#1942220: bump up hardcoded LI retrieval limit back to 10000 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f373e34f0cff37d7f804e87ed45781ee9c52acd4;p=working%2FEvergreen.git LP#1942220: bump up hardcoded LI retrieval limit back to 10000 Signed-off-by: Galen Charlton --- 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 } ] });