Skip to content

Commit 92b5e8f

Browse files
committed
Fix treshold
1 parent 30687f6 commit 92b5e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template.html.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
{% if translators_link %}</a>{% endif %}
4848
</td>
4949
<td data-label="completion">
50-
<div class="progress-bar" style="width: {{ completion | round(2) }}%;">{% if completion >= 0.05 %}{{ completion | round(2) }}%{% endif %}</div>
51-
{% if completion < 0.05 %}<div class="progress-bar appendix">{{ completion | round(2) }}%</div>{% endif %}
50+
<div class="progress-bar" style="width: {{ completion | round(2) }}%;">{% if completion >= 5 %}{{ completion | round(2) }}%{% endif %}</div>
51+
{% if completion < 5 %}<div class="progress-bar appendix">{{ completion | round(2) }}%</div>{% endif %}
5252
</td>
5353
</tr>
5454
{% endfor %}

0 commit comments

Comments
 (0)