fix(input,textarea): data-form-type attribute is assigned to inner input (#25927)

Resolves #25908
This commit is contained in:
Sean Perkins
2022-09-13 15:02:22 -04:00
committed by GitHub
parent 89d3e3c819
commit 9451b283e2
2 changed files with 2 additions and 2 deletions

View File

@ -260,7 +260,7 @@ export class Input implements ComponentInterface {
componentWillLoad() {
this.inheritedAttributes = {
...inheritAriaAttributes(this.el),
...inheritAttributes(this.el, ['tabindex', 'title']),
...inheritAttributes(this.el, ['tabindex', 'title', 'data-form-type']),
};
}