Skip to content
Snippets Groups Projects

Issue #3388548: PHP Error: value is an invalid render array key in...

1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
@@ -59,7 +59,11 @@
{% for key, value in data.values %}
<tr>
<td>{{ key }}</td>
<td>{{ value }}</td>
{% if value is not iterable %}
<td>{{ value }}</td>
{% else %}
<td>{{ value|json_encode }}</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
Loading