fix(input): add aria-label to clear button (#21538)

This commit is contained in:
Liam DeBeasi
2020-06-15 13:36:11 -04:00
committed by GitHub
parent 24cfdc308f
commit d8b377ffeb

View File

@ -405,6 +405,7 @@ export class Input implements ComponentInterface {
onKeyDown={this.onKeydown}
/>
{(this.clearInput && !this.readonly && !this.disabled) && <button
aria-label="reset"
type="button"
class="input-clear-icon"
tabindex="-1"