From 4ccc5d4554b768aa6a2944d659d9a54438005a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 2 Mar 2026 17:31:28 +0100 Subject: [PATCH] Fix typo in translation placeholder for stored object display in Twig template - Corrected `{id}` placeholder formatting in `stored_object.html.twig`. --- .../Resources/views/Audit/stored_object.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillDocStoreBundle/Resources/views/Audit/stored_object.html.twig b/src/Bundle/ChillDocStoreBundle/Resources/views/Audit/stored_object.html.twig index 21af85069..0f91f3507 100644 --- a/src/Bundle/ChillDocStoreBundle/Resources/views/Audit/stored_object.html.twig +++ b/src/Bundle/ChillDocStoreBundle/Resources/views/Audit/stored_object.html.twig @@ -1 +1 @@ -{{ 'audit.stored_object.display'|trans({'{{id}': id }) }}{% if storedObject is not null %} - {{ storedObject.title}}{% endif %} +{{ 'audit.stored_object.display'|trans({'{id}': id }) }}{% if storedObject is not null %} - {{ storedObject.title}}{% endif %}