From c894c26e3a8c35b9d941983fd7fcfb4a3fcdecd1 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 6 Jan 2023 17:04:51 +0000 Subject: [PATCH] Bug 32577: Transaction table overflows div The transations table on a patron's account overflows the window and needs to be scrollable Test plan: 1) Add a fine to a patron 2) Navigate to that Patrons detail page and click on the accounting tab from the menu on the left 3) Observe that the table overflows the window as per the image attached to this bug 4) Apply patch 5) Repeat step 2 6) The table should now have a scrollbar and be contained within its div rather than overflowing --- koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 1 + 1 file changed, 1 insertion(+) 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 310e4795d60..fd7bdb3cfd7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -358,6 +358,7 @@ 'aaSorting': [[0, 'desc']], "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', }, table_settings); + $('#table_account_fines_wrapper').css("overflow-x","auto"); $("#filter_c").html('

'+txtActivefilter+''); $('#filter_transacs').click(function(e) { e.preventDefault(); -- 2.37.1 (Apple Git-137.1)