From 9fb63914c2791d60bf7e9cdd73a6950ea2a2108a Mon Sep 17 00:00:00 2001 From: David Nind Date: Tue, 29 Jul 2025 00:36:08 +0000 Subject: [PATCH] Bug 40530: (follow-up) Remove spaces before and after the reason Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt index e4d9bcafb00..12f55399e6c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt @@ -331,7 +331,7 @@ } else if (row.cancellation_date) { let r = _("Cancelled"); if (row.cancellation_reason){ - r += " ( %s )".format(hold_cancellation_reasons[row.cancellation_reason]); + r += " (%s)".format(hold_cancellation_reasons[row.cancellation_reason]); } return r; } else if (row.status == 'W') { -- 2.50.1