Skip to content

Commit d237401

Browse files
authored
fix(ui5-checkbox): set aria-hidden attribute (#2828)
Input element now has aria-hidden="true" instead of role="none", to not be mapped to the accessibility tree. Fixes: #2786
1 parent dc5f140 commit d237401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/main/src/CheckBox.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
?checked="{{checked}}"
2525
?readonly="{{readonly}}"
2626
?disabled="{{disabled}}"
27-
role="none"
27+
aria-hidden="true"
2828
data-sap-no-tab-ref
2929
/>
3030
</div>

0 commit comments

Comments
 (0)