fix(input): inherit aria-label to input (#23159)

This commit is contained in:
William Martin
2021-04-07 14:44:03 -04:00
committed by GitHub
parent 8739c9b16d
commit 61f094d306

View File

@ -234,7 +234,7 @@ export class Input implements ComponentInterface {
} }
componentWillLoad() { componentWillLoad() {
this.inheritedAttributes = inheritAttributes(this.el, ['tabindex', 'title']); this.inheritedAttributes = inheritAttributes(this.el, ['aria-label', 'tabindex', 'title']);
} }
connectedCallback() { connectedCallback() {