diff --git a/src/panels/config/automation/ha-config-automation.ts b/src/panels/config/automation/ha-config-automation.ts index 70f2b16add..d1a117e616 100644 --- a/src/panels/config/automation/ha-config-automation.ts +++ b/src/panels/config/automation/ha-config-automation.ts @@ -59,7 +59,9 @@ class HaConfigAutomation extends HassRouterPage { private _getAutomations = memoizeOne( (states: HassEntities): AutomationEntity[] => Object.values(states).filter( - (entity) => computeStateDomain(entity) === "automation" + (entity) => + computeStateDomain(entity) === "automation" && + !entity.attributes.restored ) as AutomationEntity[] );