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 24c1c18 commit 678d747Copy full SHA for 678d747
core/src/components/checkbox/checkbox.tsx
@@ -275,7 +275,7 @@ export class Checkbox implements ComponentInterface {
275
aria-describedby={this.getHintTextID()}
276
aria-invalid={this.getHintTextID() === this.errorTextId}
277
aria-labelledby={hasLabelContent ? this.inputLabelId : null}
278
- aria-label={!hasLabelContent ? inheritedAttributes['aria-label'] || 'checkbox' : null}
+ aria-label={inheritedAttributes['aria-label'] || null}
279
aria-disabled={disabled ? 'true' : null}
280
tabindex={disabled ? undefined : 0}
281
onKeyDown={this.onKeyDown}
0 commit comments