From 6068c321767234566f54e129fb4f905ad0469105 Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Mon, 4 Aug 2025 08:51:17 -0700 Subject: [PATCH] Pass narrow through parallel/sequence automation actions (#26386) --- .../automation/action/types/ha-automation-action-parallel.ts | 3 +++ .../automation/action/types/ha-automation-action-sequence.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/panels/config/automation/action/types/ha-automation-action-parallel.ts b/src/panels/config/automation/action/types/ha-automation-action-parallel.ts index 5e102aa72e..67f9ba5278 100644 --- a/src/panels/config/automation/action/types/ha-automation-action-parallel.ts +++ b/src/panels/config/automation/action/types/ha-automation-action-parallel.ts @@ -15,6 +15,8 @@ export class HaParallelAction extends LitElement implements ActionElement { @property({ type: Boolean }) public disabled = false; + @property({ type: Boolean }) public narrow = false; + @property({ attribute: false }) public action!: ParallelAction; public static get defaultConfig(): ParallelAction { @@ -29,6 +31,7 @@ export class HaParallelAction extends LitElement implements ActionElement { return html`