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 007391b commit bbeff5bCopy full SHA for bbeff5b
core/src/components/checkbox/checkbox.tsx
@@ -277,7 +277,7 @@ export class Checkbox implements ComponentInterface {
277
aria-labelledby={hasLabelContent ? inputLabelId : null}
278
aria-label={!hasLabelContent ? inheritedAttributes['aria-label'] || 'checkbox' : null}
279
aria-disabled={disabled ? 'true' : null}
280
- tabindex={disabled ? '-1' : '0'}
+ tabindex={disabled ? undefined : 0}
281
onKeyDown={this.onKeyDown}
282
class={createColorClasses(color, {
283
[mode]: true,
0 commit comments