From b8a02852cccc022fe649e8836e1f198be1e768a5 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 12 Aug 2022 15:51:13 +0000 Subject: [PATCH] Bug 31355: Add paging = false to items table on opac-reserve Moving to an ajax datatable and paging would be a future fix, this restores lost functionality To test: 1 - Find or create a title with 20 items 2 - Place a hold in opac 3 - Attempt to select a specific item 4 - Note only 10 show 5 - Apply patch 6 - All items show Signed-off-by: Barbara Johnson --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt index 176ee43483..b45ed20983 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -710,7 +710,8 @@ dom: "t", initComplete: function() { this.find("input:radio").first().prop("checked", true ); - } + }, + paging: false }); }); }); -- 2.30.2