Skip to content

Commit

Permalink
Accessibility fix for fields (#6796)
Browse files Browse the repository at this point in the history
  • Loading branch information
charliegroll authored and oliviertassinari committed May 6, 2017
1 parent a7908d5 commit ed94c9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TextField/TextFieldUnderline.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ const TextFieldUnderline = (props) => {

return (
<div>
<hr style={prepareStyles(underline)} />
<hr style={prepareStyles(focusedUnderline)} />
<hr aria-hidden="true" style={prepareStyles(underline)} />
<hr aria-hidden="true" style={prepareStyles(focusedUnderline)} />
</div>
);
};
Expand Down

0 comments on commit ed94c9c

Please sign in to comment.