mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-09 19:58:19 +00:00
fix large item count displaying
This commit is contained in:
parent
77acd7615a
commit
cc4adfcbfe
@ -13,7 +13,11 @@
|
|||||||
>
|
>
|
||||||
{% if inv_item.attr_c != "1" %}
|
{% if inv_item.attr_c != "1" %}
|
||||||
<span class="inventory-count text-bold">
|
<span class="inventory-count text-bold">
|
||||||
{{ inv_item.attr_c }}
|
{%if inv_item.attr_c|int > 999 %}
|
||||||
|
+999
|
||||||
|
{% else %}
|
||||||
|
{{ inv_item.attr_c }}
|
||||||
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if inv_item.attr_b == "true" %}
|
{% if inv_item.attr_b == "true" %}
|
||||||
|
Loading…
Reference in New Issue
Block a user