From 73f31750753f90a39ea97ab018a11a89f834c365 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Tue, 20 Jul 2021 14:45:35 +0200 Subject: [PATCH] Bug 28723: Fix holds table display when a biblio has no title Test plan: 1. Create a biblio without title, then create an item for this biblio. 2. Place a hold on it. 3. Go to the patron detail page and click on the Holds tab 4. Confirm that holds are correctly displayed --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index e076fa5536..e3c1091c59 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -24,7 +24,7 @@ $(document).ready(function() { title = "" - + oObj.title.escapeHtml(); + + oObj.title ? oObj.title.escapeHtml() : 'No title'; $.each(oObj.subtitle, function( index, value ) { title += " " + value.escapeHtml(); -- 2.20.1