From d595b1fa5c11efb2dc9a8e95558a15dd6b976879 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 27 Aug 2020 15:10:08 -0300 Subject: [PATCH] Bug 25584: Fix minor styling issue This patch makes the button present some space between the icon and the text. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kelly McElligott Signed-off-by: Katrin Fischer --- 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 d764c579ba..03c0e6242f 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -557,7 +557,7 @@ $(document).ready(function() { if ( oObj.return_claim_id ) { content = '' + oObj.return_claim_created_on_formatted + ''; } else { - content = '' + RETURN_CLAIMED_MAKE + ''; + content = ' ' + RETURN_CLAIMED_MAKE + ''; } return content; } -- 2.11.0