From 6e0d2e2bfcd119049562b0933f84b30446f7236d Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Tue, 24 May 2022 12:12:35 +0000 Subject: [PATCH] Bug 30837 - Fix table width on 'Print summary' To reproduce: - Make sure you have a patron with at least one checkout, one hold and one fine - On the detail page for that patron, go to Print > Print summary - Observe the tables are too wide to fit on a printed page To test: - Apply this patch - Repeat the steps above - Observe the table now fits on the page --- .../intranet-tmpl/prog/en/modules/members/moremember-print.tt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt index bc993c3670..3a606e06bb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -226,6 +226,7 @@ KohaTable("print-summary-checkouts", { "dom": "Bt", "paging": false, + "bAutoWidth": false, initComplete: function( settings) { moveColumnsButton( settings.nTable.id ); } @@ -234,6 +235,7 @@ KohaTable("print-summary-holds", { "dom": "Bt", "paging": false, + "bAutoWidth": false, initComplete: function( settings) { moveColumnsButton( settings.nTable.id ); } @@ -242,6 +244,7 @@ KohaTable("print-summary-fines", { "dom": "Bt", "paging": false, + "bAutoWidth": false, initComplete: function( settings) { moveColumnsButton( settings.nTable.id ); } -- 2.30.2