Skip to content

Commit

Permalink
fix: Fix rendering of labels
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Feb 13, 2022
1 parent fa0a7c0 commit 52919c5
Showing 1 changed file with 4 additions and 4 deletions.
@@ -1,8 +1,8 @@
{{ log.debug() }}
{% if properties %}
{{ log.debug("Rendering labels") }}
{% if labels %}
<span class="doc doc-properties">
{% for property in properties %}
<small class="doc doc-property doc-property-{{ property }}"><code>{{ property }}</code></small>
{% for label in labels %}
<small class="doc doc-label doc-label-{{ label }}"><code>{{ label }}</code></small>
{% endfor %}
</span>
{% endif %}

0 comments on commit 52919c5

Please sign in to comment.