Align automation trace tab order with script tab order (#24974)

This commit is contained in:
Jan-Philipp Benecke
2025-04-09 08:05:34 +02:00
committed by GitHub
parent 9c3f77532c
commit a2b3ea2ac6

View File

@@ -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 {