Skip to content

Commit

Permalink
fix: 접근성 테스트 실패 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Jun 28, 2024
1 parent 190b7af commit fd212ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ const meta = {
component: ProgressBar,
parameters: {
componentSubtitle: "프로그래스바 컴포넌트",
a11y: {
config: {
rules: [{ id: "color-contrast", enabled: false }],
},
},
},
tags: ["autodocs"],
argTypes: {
Expand Down
1 change: 1 addition & 0 deletions packages/wow-ui/src/components/ProgressBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const ProgressBar = ({

return (
<div
aria-label="progressbar"
aria-valuemax={maxStep}
aria-valuemin={1}
aria-valuetext={String(step)}
Expand Down

0 comments on commit fd212ac

Please sign in to comment.