From 593bad6502d0260f8f7076d0f71848877df9b50f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 27 Aug 2024 12:53:49 +0200 Subject: [PATCH] Bug 37745: (bug 35402 follow-up) Fix "Rows per page" dropdown items There were 2 class attributes. Test plan: Create a new report and run it Use the "Rows per page" dropdown to select another value => Without this patch nothing happens => With this patch applied the page is reloaded and the correct number of rows is displayed Signed-off-by: Roman Dolny Signed-off-by: Lucas Gass Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer --- .../prog/en/modules/reports/guided_reports_start.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt index 733bc2542c..ed1e0cf7de 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1131,11 +1131,11 @@ [% FOREACH l IN limits %] [% IF l == limit %]
  • - [% l | html %] + [% l | html %]
  • [% ELSE %]
  • - [% l | html %] + [% l | html %]
  • [% END %] [% END %] -- 2.39.5