Compare commits

...

9 Commits

Author SHA1 Message Date
J. Nick Koston
ecba22d301 Merge branch 'dev' into persistent_notification_trigger 2023-06-22 01:44:19 +02:00
J. Nick Koston
72172cabc2 Migrate to using dismiss_all for persistent_notification 2023-06-22 01:41:49 +02:00
J. Nick Koston
4ffd31974c switch to schema 2023-06-21 10:38:57 +02:00
J. Nick Koston
1faef71dcb tweak 2023-06-21 10:25:53 +02:00
J. Nick Koston
1e5c35c158 Merge branch 'dev' into persistent_notification_trigger 2023-06-21 09:58:42 +02:00
J. Nick Koston
2e3ce4ae9e lint 2023-06-21 09:57:39 +02:00
RoboMagus
30f2a49fbf Simplified update_types localizations 2023-06-20 17:53:33 +02:00
RoboMagus
101e9323a7 Review updates 2023-06-20 14:58:24 +02:00
RoboMagus
4526a46a56 Add persistent_notification trigger 2023-06-19 15:02:53 +02:00

View File

@@ -139,11 +139,7 @@ export class HuiNotificationDrawer extends LitElement {
}
private _dismissAll() {
this._notifications.forEach((notification) => {
this.hass.callService("persistent_notification", "dismiss", {
notification_id: notification.notification_id,
});
});
this.hass.callService("persistent_notification", "dismiss_all");
this.closeDialog();
}