Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
fix(ui): progress bar will now fill to max (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher authored Nov 13, 2023
1 parent 9057aed commit aba0560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Contents/Resources/web/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ <h2><a class="text-black" role="button" data-bs-toggle="collapse"
</div>
<!-- set the remainder to gray -->
<div class="progress-bar bg-secondary" role="progressbar"
style="width: {{ 101 - items[section]['media_percent_complete'] }}%"
aria-valuenow="{{ 101 - items[section]['media_percent_complete'] }}"
style="width: {{ 100 - items[section]['media_percent_complete'] }}%"
aria-valuenow="{{ 100 - items[section]['media_percent_complete'] }}"
aria-valuemin="0" aria-valuemax="100">
</div>
</div>
Expand Down

0 comments on commit aba0560

Please sign in to comment.