From bb93ab89f91789c962884b6a7e94ecb78ca3e164 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 10 Jan 2024 09:04:31 +0100 Subject: [PATCH] Bug 35329: Remove fixedHeader If fixedHeader is set for the result table in the modal, the header will still appear (quite randomly) on the main view. To recreate the problem: Go to /cgi-bin/koha/members/memberentry.pl Click Add guarantor Search Close the modal Scroll down => The header of the table will be displayed randomly at the top of the page --- koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc index 2c696ae9ec1..d2322320300 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc @@ -652,6 +652,7 @@ }); }, [% END %] + fixedHeader: false, }, typeof table_settings !== 'undefined' ? table_settings : null, 1, additional_filters); patron_search_form.on('submit', filter); -- 2.34.1