Skip to content

Commit

Permalink
fix(progress-bar): aria-valuenow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorehouse committed Aug 23, 2017
1 parent 3c761e2 commit f0b486e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/progress-bar.vue
Expand Up @@ -2,8 +2,8 @@
<div role="progressbar" <div role="progressbar"
:class="progressBarClasses" :class="progressBarClasses"
:style="progressBarStyles" :style="progressBarStyles"
:aria-valuenow="value.toFixed(this.computedPrecision)" :aria-valuenow="value.toFixed(computedPrecision)"
:aria-valuemin="0" aria-valuemin="0"
:aria-valuemax="computedMax" :aria-valuemax="computedMax"
> >
<slot> <slot>
Expand Down

0 comments on commit f0b486e

Please sign in to comment.