From d5a1a82a9bb3aa8c693192d469ee0186aef7c7c4 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 Signed-off-by: Martin Renvoize --- 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.39.2