Skip to content

Commit

Permalink
fix(Stepper): add "+, -" aria-labels (#552)
Browse files Browse the repository at this point in the history
fix: add aria-labels to stepper
  • Loading branch information
ashjtan committed May 26, 2023
1 parent 20f661d commit 342344d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Stepper/src/Stepper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
:text-color="resolvedTextColor"
:shape="resolvedShape"
:disabled="value === minVal"
aria-label=""
@click="decrement"
>
<m-icon
Expand Down Expand Up @@ -49,6 +50,7 @@
:text-color="resolvedTextColor"
:shape="resolvedShape"
:disabled="value === maxVal"
aria-label="+"
@click="increment"
>
<m-icon
Expand Down

0 comments on commit 342344d

Please sign in to comment.