From 9ffa132a08fbdd055a9c72a5e68dc3e85568d567 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 9 Feb 2023 23:04:17 +0100 Subject: [PATCH] Bug 31209: Add a span with a class for items.enumchron in the checkouts list To test: * Add or edit an item and add some info to the 'Serial Enumeration / chronology' field * Check the item out * Verify by checking the source code or using the element inspector that the title and enumchron have been merged into one string * Apply patch * Reload and verify that now the enumchron is wrapped in a span with class="item_enumeration" matching the class in the list of checkins --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 50349e3b9d..534fec1cda 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -336,7 +336,7 @@ $(document).ready(function() { title += " " + oObj.part_number + " " + oObj.part_name; if ( oObj.enumchron ) { - title += " (" + oObj.enumchron.escapeHtml() + ")"; + title += " (" + oObj.enumchron.escapeHtml() + ")"; } title += ""; -- 2.30.2