From 4873465232c935e671e7c388966015590f83bdd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Thu, 27 Mar 2025 10:38:33 +0100 Subject: [PATCH] fix: avoid linebreak in currency values --- src/Form/ParticipantType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/ParticipantType.php b/src/Form/ParticipantType.php index ae6576c..d81b151 100644 --- a/src/Form/ParticipantType.php +++ b/src/Form/ParticipantType.php @@ -144,7 +144,7 @@ class ParticipantType extends AbstractType return $service->label; } - return sprintf('%s (%s €)', + return sprintf('%s (%s €)', $service->label, number_format($price, 2, ',', '.') );