Skip to content

Commit

Permalink
fix iterable access
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Apr 16, 2024
1 parent 3754629 commit 02ebf0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/views/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
{% elseif value is same as (false) %}
false
{% else %}
{{ value }}
{{ value is iterable ? value|join(', ') : value }}
{% endif %}
</code>
<br>
Expand Down

0 comments on commit 02ebf0e

Please sign in to comment.