From 0a816c84e2aab4913a504be6ff87f99bdf32e9de Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 9 Oct 2023 19:58:50 +0000 Subject: [PATCH] Bug 35015: (QA follow-up) Fix paid transactions filter in the staff interface Same problem: we added a column without adjusting the filter. Signed-off-by: Katrin Fischer Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt index ca7d032358..d3a3392318 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -395,7 +395,7 @@ var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408 $(this).html(' '+txtInactivefilter); } - table_account_fines.DataTable().columns( 13 ).search( filteredValue, true, false ).draw(); + table_account_fines.DataTable().columns( 14 ).search( filteredValue, true, false ).draw(); $(this).toggleClass('filtered'); }); -- 2.30.2