mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Fix type error for displaying comment in accompanying period work detail view page
This commit is contained in:
parent
64d91e2afe
commit
3ec0d26001
@ -211,7 +211,7 @@
|
|||||||
<h3 class="chill-beige">Public</h3>
|
<h3 class="chill-beige">Public</h3>
|
||||||
{% if w.note is not empty %}
|
{% if w.note is not empty %}
|
||||||
<blockquote class="chill-user-quote">
|
<blockquote class="chill-user-quote">
|
||||||
{{ w.note|chill_entity_render_box({'metadata': true }) }}
|
{{ w.note }}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="chill-no-data-statement">{{ 'No comment associated'|trans }}</span>
|
<span class="chill-no-data-statement">{{ 'No comment associated'|trans }}</span>
|
||||||
|
@ -237,8 +237,7 @@
|
|||||||
{% if displayContent is defined and displayContent == 'long' %}
|
{% if displayContent is defined and displayContent == 'long' %}
|
||||||
|
|
||||||
{% if e.comment is not empty %}
|
{% if e.comment is not empty %}
|
||||||
<blockquote
|
<blockquote class="chill-user-quote">{{ e.comment }}</blockquote>
|
||||||
class="chill-user-quote">{{ e.comment|chill_entity_render_box }}</blockquote>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% import "@ChillDocStore/Macro/macro.html.twig" as m %}
|
{% import "@ChillDocStore/Macro/macro.html.twig" as m %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user