From c46f67d5726536a5d355c1e518fee9618a73b997 Mon Sep 17 00:00:00 2001 From: Wendelin <12148533+wendevlin@users.noreply.github.com> Date: Wed, 10 Dec 2025 16:34:52 +0100 Subject: [PATCH] Fix automation add tca item search (#28483) --- .../add-automation-element/ha-automation-add-search.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panels/config/automation/add-automation-element/ha-automation-add-search.ts b/src/panels/config/automation/add-automation-element/ha-automation-add-search.ts index 4afb9dbee9..e6aaa441bd 100644 --- a/src/panels/config/automation/add-automation-element/ha-automation-add-search.ts +++ b/src/panels/config/automation/add-automation-element/ha-automation-add-search.ts @@ -85,11 +85,11 @@ const TARGET_SEARCH_SECTIONS = [ export const ITEM_SEARCH_KEYS: FuseWeightedKey[] = [ { - name: "name", + name: "primary", weight: 10, }, { - name: "description", + name: "secondary", weight: 7, }, ];