mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-30 10:29:42 +00:00
Fix type error for displaying comment in accompanying period work detail view page
This commit is contained in:
@@ -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 %}
|
||||||
|
Reference in New Issue
Block a user