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 <katrin.fischer.83@web.de>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Katrin Fischer 2023-10-09 19:58:50 +00:00 committed by Tomas Cohen Arazi
parent 7cf209a550
commit 4b1d4ca170
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -395,7 +395,7 @@
var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408
$(this).html('<i class="fa fa-filter"></i> '+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');
});