add striptags to properties rendering (#1631)

This commit is contained in:
Tom Kralidis
2024-04-18 11:36:21 -04:00
committed by GitHub
parent 66bbd85463
commit 3e14893e32
@@ -92,7 +92,7 @@
{% for k in data['features'][0]['properties'].keys() %}
{% if k not in [data.id_field, data.title_field, data.uri_field, 'extent'] %}
{% set props = props.append(k) %}
<th>{{ k }}</th>
<th>{{ k | striptags }}</th>
{% endif %}
{% endfor %}
</tr>