fix flex item-col placement for documents list

This commit is contained in:
2022-03-01 16:13:11 +01:00
parent ae0bf7bfd7
commit 1a05ffab96
2 changed files with 3 additions and 2 deletions

View File

@@ -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 %}