address review comments

This commit is contained in:
Ian Richardson 2019-02-16 13:31:41 -06:00
parent 34f36c6179
commit bdaf96b114
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ class HuiNotificationsButton extends LitElement {
private _clicked() { private _clicked() {
this.opened = true; this.opened = true;
fireEvent(this, "opened", { value: this.opened }); fireEvent(this, "opened-changed", { value: this.opened });
} }
} }

View File

@ -194,7 +194,7 @@ class HUIRoot extends LitElement {
<hui-notifications-button <hui-notifications-button
.hass="${this.hass}" .hass="${this.hass}"
.opened="${this._notificationsOpen}" .opened="${this._notificationsOpen}"
@opened="${this._handleNotificationsOpenChanged}" @opened-changed="${this._handleNotificationsOpenChanged}"
.notifications="${this._notifications}" .notifications="${this._notifications}"
></hui-notifications-button> ></hui-notifications-button>
<ha-start-voice-button <ha-start-voice-button