From a2b3ea2ac66feda41eedada9cf2e262bb0756bf1 Mon Sep 17 00:00:00 2001 From: Jan-Philipp Benecke Date: Wed, 9 Apr 2025 08:05:34 +0200 Subject: [PATCH] Align automation trace tab order with script tab order (#24974) --- src/panels/config/automation/ha-automation-trace.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/config/automation/ha-automation-trace.ts b/src/panels/config/automation/ha-automation-trace.ts index 1a21545e43..562176d46e 100644 --- a/src/panels/config/automation/ha-automation-trace.ts +++ b/src/panels/config/automation/ha-automation-trace.ts @@ -43,7 +43,7 @@ import { haStyle } from "../../../resources/styles"; import type { HomeAssistant, Route } from "../../../types"; import { computeRTL } from "../../../common/util/compute_rtl"; -const TABS = ["details", "automation_config", "timeline", "logbook"] as const; +const TABS = ["details", "timeline", "logbook", "automation_config"] as const; @customElement("ha-automation-trace") export class HaAutomationTrace extends LitElement {