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 <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Katrin Fischer 2020-02-24 17:01:19 +00:00 committed by Martin Renvoize
parent 2fe29c6574
commit d5a1a82a9b
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -905,9 +905,9 @@ $(document).ready(function() {
+ ( oObj.enumchron || "" )
+ '</a>';
if ( oObj.author ) {
title += 'by ' + oObj.author;
title += ' by ' + oObj.author;
}
title += '<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
title += ' <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
return title;
}