From c6d36c1a3af2da601a9af6186e6ce158cd928ce5 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 --- .../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 733bc2542c6..ed1e0cf7de3 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.34.1