From a3cf37858e849e6fc6a38c9efb75c6914d52e83a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 24 Feb 2020 17:01:19 +0000 Subject: [PATCH] Bug 24725: (QA follow-up) Add missing spaces between elements on claims tab There was a missing space between the title and the barcode. Also added a space between title and author. Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index cb8535dcdd..169bdc4e36 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -905,9 +905,9 @@ $(document).ready(function() { + ( oObj.enumchron || "" ) + ''; if ( oObj.author ) { - title += 'by ' + oObj.author; + title += ' by ' + oObj.author; } - title += '' + oObj.barcode + ''; + title += ' ' + oObj.barcode + ''; return title; } -- 2.11.0