From af13d610b2dff369dd39c10abc899fc0bb64b9aa Mon Sep 17 00:00:00 2001 From: Aidan Timson Date: Wed, 25 Feb 2026 08:32:39 +0000 Subject: [PATCH] Section in picker values --- src/components/ha-clock-date-format-picker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ha-clock-date-format-picker.ts b/src/components/ha-clock-date-format-picker.ts index 2d658f7413..b425e7d983 100644 --- a/src/components/ha-clock-date-format-picker.ts +++ b/src/components/ha-clock-date-format-picker.ts @@ -321,7 +321,7 @@ export class HaClockDateFormatPicker extends LitElement { const item = section.items.find((candidate) => candidate.id === value); if (item) { - return item.primary; + return `${item.primary} [${section.title}]`; } }