Skip to content

Commit

Permalink
Update ProgressBar.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jan 9, 2024
1 parent 8ec8cc8 commit 6dfbbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/progressbar/ProgressBar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div role="progressbar" :class="cx('root')" aria-valuemin="0" :aria-valuenow="value" aria-valuemax="100" v-bind="ptm('root')">
<div role="progressbar" :class="cx('root')" aria-valuemin="0" :aria-valuenow="value" aria-valuemax="100" v-bind="ptm('root')" data-pc-name="progressbar">
<div v-if="determinate" :class="cx('value')" :style="progressStyle" v-bind="ptm('value')">
<div v-if="value != null && value !== 0 && showValue" :class="cx('label')" v-bind="ptm('label')">
<slot>{{ value + '%' }}</slot>
Expand Down

0 comments on commit 6dfbbea

Please sign in to comment.