Skip to content

Commit

Permalink
fix(ProgressIndicator): add aria-disabled attribute to disabled steps
Browse files Browse the repository at this point in the history
  • Loading branch information
emyarod committed Oct 8, 2019
1 parent dd100e8 commit a841b94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const ProgressStep = ({ ...props }) => {
};

return (
<li className={classes}>
<li className={classes} aria-disabled={disabled}>
<div
className={classnames(`${prefix}--progress-step-button`, {
[`${prefix}--progress-step-button--unclickable`]: !onClick || current,
Expand Down

0 comments on commit a841b94

Please sign in to comment.