From cb9a05a7135afc419565b3e5422bb7a33a9a3190 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 Signed-off-by: Katrin Fischer --- .../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 b7439164c8..295d976d7d 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.39.5