Fix aria label icon name (#5992)

This commit is contained in:
Bram Kragten 2020-05-22 22:24:37 +02:00 committed by GitHub
parent c5b223988a
commit 7daafcbe1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ export class HaIconButton extends LitElement {
protected render(): TemplateResult { protected render(): TemplateResult {
return html` return html`
<mwc-icon-button <mwc-icon-button
.label=${this.label || this.icon} .label=${this.label}
?disabled=${this.disabled} ?disabled=${this.disabled}
@click=${this._handleClick} @click=${this._handleClick}
> >

View File

@ -183,7 +183,7 @@ class HUIRoot extends LitElement {
${this._conversation(this.hass.config.components) ${this._conversation(this.hass.config.components)
? html` ? html`
<ha-icon-button <ha-icon-button
aria-label="Start conversation" label="Start conversation"
icon="hass:microphone" icon="hass:microphone"
@click=${this._showVoiceCommandDialog} @click=${this._showVoiceCommandDialog}
></ha-icon-button> ></ha-icon-button>