From bc764f018abfa4e90e0cd3f7b49efda9be3bc5f3 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Thu, 18 Jun 2020 13:19:34 -0400 Subject: [PATCH] up the hard-coded value for the record query limit in record bucket UI Signed-off-by: Chris Sharp --- Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js b/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js index cd9b9326d4..8b12d0c149 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js @@ -496,7 +496,7 @@ function($scope, $routeParams, egCore , bucketSvc) { egCore.net.request( 'open-ils.search', 'open-ils.search.biblio.multiclass.query.staff', { - limit : 500 // meh + limit : 2000 // meh }, bucketSvc.queryString, true ).then(function(resp) { bucketSvc.queryRecords = -- 2.11.0