From 05cd884c8f7eced94a27592bce5b37eaec2fd436 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 23 Apr 2021 12:53:34 -0400 Subject: [PATCH] Bug 27790: (QA follow-up) Fix offsets due to new columns --- .../intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt index 0d2380e953..fb90eeacdd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -243,8 +243,8 @@ - + @@ -353,9 +353,9 @@ }); }); $("#pickup-location").each( function () { - $(this).html( createSelect( holdst.fnGetColumnData(13) ) ); + $(this).html( createSelect( holdst.fnGetColumnData(14) ) ); $('select', this).change( function () { - holdst.fnFilter( $(this).val(), 13 ); + holdst.fnFilter( $(this).val(), 14 ); }); }); }); -- 2.24.3 (Apple Git-128)