diff --git a/src/panels/lovelace/components/notifications/hui-notifications-button.ts b/src/panels/lovelace/components/notifications/hui-notifications-button.ts index 8d72ef1623..f58f3425aa 100644 --- a/src/panels/lovelace/components/notifications/hui-notifications-button.ts +++ b/src/panels/lovelace/components/notifications/hui-notifications-button.ts @@ -60,7 +60,7 @@ class HuiNotificationsButton extends LitElement { private _clicked() { this.opened = true; - fireEvent(this, "opened", { value: this.opened }); + fireEvent(this, "opened-changed", { value: this.opened }); } } diff --git a/src/panels/lovelace/hui-root.ts b/src/panels/lovelace/hui-root.ts index f5398d139c..718d34a176 100644 --- a/src/panels/lovelace/hui-root.ts +++ b/src/panels/lovelace/hui-root.ts @@ -194,7 +194,7 @@ class HUIRoot extends LitElement {