Skip to content

Commit

Permalink
Fix progress bar (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
JSKitty authored Mar 6, 2024
1 parent 77b386c commit 64e6794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/Loadingbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const props = defineProps({
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
aria-valuenow="percentage"
:aria-valuenow="percentage"
aria-valuemin="0"
aria-valuemax="100"
:style="{ width: percentage + '%' }"
:style="{ width: percentage + '% !important' }"
></div>
</div>
</template>

0 comments on commit 64e6794

Please sign in to comment.