From 5f3fb2fd82a47e1580475c5219dc61741d39e30f Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 21 May 2025 14:52:21 +0000 Subject: [PATCH] Bug 39955: Report subgroup filter not cleared when changing tabs This patch fixes the JS on the saved SQL reports page so that the subgroup column filter is correctly cleared when the tab changes. The wrong table column is targeted. To test, apply the patch and go to Reports -> Saved SQL reports. - If necessary, at least two SQL reports, each with in a different group and different subgroup. For example: - sql: SELECT * FROM items LIMIT 10; - group: Catalog - subgroup: Statistics ...and... - sql: SELECT * FROM borrowers LIMIT 10; - group: Patrons - subgroup: Statistics - From the saved reports page, go to the tab for one of your reports and filter by subgroup. - Switch to a different tab containing SQL reports. The reports should be shown as expected. Sponsored-by: Athens County Public Libraries --- .../prog/en/modules/reports/guided_reports_start.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 081cbb05bc8..23c48bfe1c9 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 @@ -2481,7 +2481,7 @@ let table_dt = rtable.DataTable(); let col4 = table_dt.columns(4); col4.search("").visible(true); - let col5 = table_dt.columns(4); + let col5 = table_dt.columns(5); col5.search("").visible(true); var g_id = tab.find("a").data("tabname"); -- 2.39.5