Skip to content

Commit

Permalink
fix: template syntax error (#1491)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarros authored Nov 2, 2023
1 parent 3003e32 commit db3e026
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<tr{% if 'alert' in row and row['alert'] %} class="alert"{% endif %}>
<th>{{ row['name'] }}</th>
{% if row['value'].__class__.__name__ == 'list' %}
{% for value in row['value'] +%}
{% for value in row['value'] %}
<td style="white-space:pre white-space:nowrap">{{ value }}{% if loop.last and 'hint' in row %} {{ row['hint'] }}{% endif %}</td>
{% endfor %}
{% else %}
Expand Down

0 comments on commit db3e026

Please sign in to comment.