[COMPONENT][ACTOR CIRCLE] fixing template text

This commit is contained in:
Phablulo Joel 2021-12-29 13:59:56 -03:00
parent 01d5e84a08
commit 0caec6ab9e
1 changed files with 2 additions and 2 deletions

View File

@ -8,10 +8,10 @@
{% block body %}
{% if tag_name is defined and tag_name is not null %}
{% if tag_name is instanceof('string') %}
<h2>{% trans %}Notes with tag: %tag_name%{% endtrans %}</h2>
<h2>{% trans %}Actors with tag: %tag_name%{% endtrans %}</h2>
{% else %}
{% set tags = tag_name|join(',') %} {# TODO Not ideal, hard to translate #}
<h2>{% trans %}Notes with tags: %tags%{% endtrans %}</h2>
<h2>{% trans %}Actors with tags: %tags%{% endtrans %}</h2>
{% endif %}
{% endif %}