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 {
return html`
<mwc-icon-button
.label=${this.label || this.icon}
.label=${this.label}
?disabled=${this.disabled}
@click=${this._handleClick}
>

View File

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