Skip to content

Commit

Permalink
fix(ui5-checkbox): set aria-hidden attribute (#2828)
Browse files Browse the repository at this point in the history
Input element now has aria-hidden="true" instead of role="none", to not be mapped to the accessibility tree.

Fixes: #2786
  • Loading branch information
dobrinyonkov committed Feb 17, 2021
1 parent dc5f140 commit d237401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/main/src/CheckBox.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
?checked="{{checked}}"
?readonly="{{readonly}}"
?disabled="{{disabled}}"
role="none"
aria-hidden="true"
data-sap-no-tab-ref
/>
</div>
Expand Down

0 comments on commit d237401

Please sign in to comment.