1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 20:55:49 +00:00

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
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>