From 81fd27153a26154da576eaaba7274968b36f1a3f 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 Signed-off-by: Jonathan Druart (cherry picked from commit 2a0ccf7af26236db9a3e40968cf8f43bc308f142) Signed-off-by: Lucas Gass --- 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 30d13c1fe2..ff95be4aa0 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.20.1