Skip to content

Commit

Permalink
Fix incorrect width of APCu Hit/Miss bar (#1283)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbableck authored Oct 1, 2024
1 parent 4ce7396 commit 228eb24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/Froxlor/settings/apcuinfo.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<div class="progress-bar bg-success"></div>
</div>
<div class="progress" role="progressbar"
style="width: {{ 100 - apcuinfo.num_misses_percentage }}%"
style="width: {{ apcuinfo.num_misses_percentage }}%"
aria-valuenow="{{ apcuinfo.num_misses }}" aria-valuemin="0"
aria-valuemax="{{ apcuinfo.num_hits_and_misses }}">
<div class="progress-bar bg-danger"></div>
Expand Down

0 comments on commit 228eb24

Please sign in to comment.