From f554a14d9555ec890011df8c34bb1c09531b8fec Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 14 Aug 2024 11:09:55 +0200 Subject: [PATCH] Bug 37309: Adjustment for 33526 --- .../en/includes/html_helpers/tables/items/catalogue_detail.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc index 03f248234c4..7c6d1d3fc55 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -98,7 +98,8 @@ function _itemSelectionBuildLink(tab_id, link_class) { let itemnumbers = items_selection[tab_id]; - let form = $("#" + tab_id).find(link_class); + let tab = $("#" + tab_id + "_panel" ); + let form = tab.find(link_class); $(form).find("input[name='itemnumber']").remove(); $(itemnumbers).each(function() { -- 2.34.1