fix confusion between document dates

This commit is contained in:
2022-03-01 15:03:21 +01:00
parent 0d38cae217
commit 8764aacd92
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
{% endif %}
{% if entity.updatedBy != null %}
{% if entity.updatedAt != null %}
{{ ', ' ~ 'by_user'|trans }}
{{ ', ' }}<br>{{ '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 }}
{{ ', ' }}<br>{{ 'by_user'|trans }}
{% else %}
{{ 'Created by'|trans }}
{% endif %}