From fd4efa568dbf17a24e0dff18326c8b10d52e9d2d 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 Signed-off-by: Kyle M Hall --- 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 3d76f72c628..8788dd154c0 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