diff --git a/templates/cards/blocks/note.html.twig b/templates/cards/blocks/note.html.twig index 9c4980072f..ffa9dbdc09 100644 --- a/templates/cards/blocks/note.html.twig +++ b/templates/cards/blocks/note.html.twig @@ -24,12 +24,14 @@ {% endblock note_actions %} {% block note_replies %} + {% import '/cards/macros/note.html.twig' as noteView %} + {% if replies is defined and replies is not empty %}
{{ 'Replies to ' | trans }}{{ nickname }}{{ '\'s note' | trans }} {% for conversation in replies %} - {{ _self.note_vanilla(conversation['note'], conversation['replies']) }} + {{ noteView.note_vanilla(conversation['note'], conversation['replies']) }}
{% endfor %}