diff --git a/CHANGELOG.md b/CHANGELOG.md
index 233c1f51b..8c78c7a3c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,7 @@ and this project adheres to
* [accompanying period work] remove the possibility to generate document from an accompanying period work
* vuejs: add validation on required fields for AddPerson, Address and Location components
* vuejs: treat 422 validation errors in locations and AddPerson components
+* [person]: space added between deathdate and age in twig renderbox (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/380)
## Test releases
diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
index 61bf3e83b..622318643 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
@@ -90,7 +90,7 @@
{#- must be on one line to avoid spaces with dash -#}
{%- if options['addAge'] -%}
- {{ 'years_old'|trans({ 'age': person.age }) }}
+ {{ 'years_old'|trans({ 'age': person.age }) }}
{%- endif -%}
{%- elseif person.birthdate is not null -%}