diff --git a/src/panels/config/automation/sidebar/ha-automation-sidebar-trigger.ts b/src/panels/config/automation/sidebar/ha-automation-sidebar-trigger.ts index d79b0fd8f3..70f7bbfd6e 100644 --- a/src/panels/config/automation/sidebar/ha-automation-sidebar-trigger.ts +++ b/src/panels/config/automation/sidebar/ha-automation-sidebar-trigger.ts @@ -63,8 +63,7 @@ export default class HaAutomationSidebarTrigger extends LitElement { protected render() { const rowDisabled = - this.disabled || - ("enabled" in this.config.config && this.config.config.enabled === false); + "enabled" in this.config.config && this.config.config.enabled === false; const type = isTriggerList(this.config.config) ? "list" : this.config.config.trigger;