1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #9871: Fix utilization graph value alignments

This commit is contained in:
jeremystretch
2022-08-01 11:54:39 -04:00
parent 984d15d7fb
commit d4d73674fc
2 changed files with 15 additions and 20 deletions

View File

@ -14,6 +14,7 @@
### Bug Fixes
* [#9871](https://github.com/netbox-community/netbox/issues/9871) - Fix utilization graph value alignments
* [#9884](https://github.com/netbox-community/netbox/issues/9884) - Prevent querying assigned VRF on prefix object init
* [#9885](https://github.com/netbox-community/netbox/issues/9885) - Fix child prefix counts when editing/deleting aggregates in bulk
* [#9891](https://github.com/netbox-community/netbox/issues/9891) - Ensure consistent ordering for tags during object serialization

View File

@ -1,9 +1,4 @@
{% if utilization == 0 %}
<div class="progress align-items-center justify-content-center">
<span class="w-100 text-center">{{ utilization }}%</span>
</div>
{% else %}
<div class="progress">
<div class="progress">
<div
role="progressbar"
aria-valuemin="0"
@ -12,10 +7,9 @@
class="progress-bar {{ bar_class }}"
style="width: {{ utilization }}%;"
>
{% if utilization >= 25 %}{{ utilization|floatformat }}%{% endif %}
{% if utilization >= 25 %}{{ utilization|floatformat:1 }}%{% endif %}
</div>
{% if utilization < 25 %}
<span class="ps-1">{{ utilization|floatformat }}%</span>
<span class="ps-1">{{ utilization|floatformat:1 }}%</span>
{% endif %}
</div>
{% endif %}
</div>