diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b38afb37..d1d184e46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to * [Person/Household list] when listing other simultaneous members of an household, exclude the members on person, not on members (avoid to show two membersship with the same person) * [draft periods] add a delete button (if acl granted) on each draft period listed on draft period page (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/463) * [Person] Display suffixText in RenderPerson, PersonText.vue, RenderPersonBox.vue (was made for displaying "enfant confie") (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/441) +* [documents] Improve flex-table item-col placement when long buttons and long metadata ## Test releases diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Macro/updatedBy.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Macro/updatedBy.html.twig index 5b86bc319..cbfd7660b 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Macro/updatedBy.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Macro/updatedBy.html.twig @@ -8,7 +8,7 @@ {% endif %} {% if entity.updatedBy != null %} {% if entity.updatedAt != null %} - {{ ', ' }}{{ 'by_user'|trans }} + {{ ', ' ~ 'by_user'|trans }} {% else %} {{ 'Last updated by'|trans }} {% endif %} @@ -29,7 +29,7 @@ {% endif %} {% if entity.createdBy != null %} {% if entity.createdAt != null %} - {{ ', ' }}{{ 'by_user'|trans }} + {{ ', ' ~ 'by_user'|trans }} {% else %} {{ 'Created by'|trans }} {% endif %}