We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc7d7a commit e7a70deCopy full SHA for e7a70de
core/src/components/checkbox/checkbox.tsx
@@ -266,10 +266,8 @@ export class Checkbox implements ComponentInterface {
266
const hasLabelContent = el.textContent !== '';
267
const inputLabelId = inputId + '-lbl';
268
269
+ // The host must be a checkbox role to support Safari's Voice Over accessibility
270
return (
- /*
271
- The host must be a checkbox role to support Safari's Voice Over accessibility
272
- */
273
<Host
274
role="checkbox"
275
aria-checked={indeterminate ? 'mixed' : `${checked}`}
0 commit comments