From 77d8aff1f4d2c2aa29910632da47572c8e9e8821 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Wed, 21 Aug 2024 19:59:02 +0200 Subject: [PATCH] Add missing label_id and floor_id key in action struct (#21753) * Add missing label_id key in action struct * Add missing floor_id key in action struct --- src/panels/lovelace/editor/structs/action-struct.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/panels/lovelace/editor/structs/action-struct.ts b/src/panels/lovelace/editor/structs/action-struct.ts index e69e59b874..75ff88beba 100644 --- a/src/panels/lovelace/editor/structs/action-struct.ts +++ b/src/panels/lovelace/editor/structs/action-struct.ts @@ -41,6 +41,8 @@ const actionConfigStructService = object({ entity_id: optional(union([string(), array(string())])), device_id: optional(union([string(), array(string())])), area_id: optional(union([string(), array(string())])), + floor_id: optional(union([string(), array(string())])), + label_id: optional(union([string(), array(string())])), }) ), confirmation: optional(actionConfigStructConfirmation),