refactor(input, textarea): remove extra aria-disabled (#26818)

This commit is contained in:
Liam DeBeasi
2023-02-21 11:48:55 -05:00
committed by GitHub
parent cebd803a1e
commit cbf8bad8c8
2 changed files with 0 additions and 2 deletions

View File

@ -641,7 +641,6 @@ export class Input implements ComponentInterface {
return (
<Host
aria-disabled={disabled ? 'true' : null}
class={createColorClasses(this.color, {
[mode]: true,
'has-value': this.hasValue(),

View File

@ -623,7 +623,6 @@ For textareas that do not have a visible label, developers should use "aria-labe
return (
<Host
aria-disabled={disabled ? 'true' : null}
class={createColorClasses(this.color, {
[mode]: true,
'has-value': this.hasValue(),