From cde12110c55f0c3a7999708dbb0c194dc5611db4 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Fri, 26 Sep 2025 12:45:00 +0000 Subject: [PATCH] =?UTF-8?q?Bug=2040881:=20Table=20layout=20overflow=20on?= =?UTF-8?q?=20course=20interface=20=E2=80=93=20table=20extends=20beyond=20?= =?UTF-8?q?container?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Course interface (Course Reserves) page shows a layout issue: the results table overflows horizontally and extends beyond its container. Steps to reproduce 1. Log in to the staff interface. 2. Go to Course reserves. 3. Click New course, fill in the required fields, and click Save. 4. Click Add reserves, add items or biblionumbers, click Submit, then click Save to add reserve. 5. Click Cancel to see the Course details Table ---> table extends beyond container 6. Apply the patch 7. Reload the page ---> the table is no longer overflowing --- .../prog/en/modules/course_reserves/course-details.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt index 3ca71955fb2..93ad26e9577 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt @@ -377,6 +377,7 @@ { pagingType: "full", autoWidth: false, + "responsive": true }, table_settings ); -- 2.34.1