1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-04-02 00:27:49 +01:00

Fix configStruct for conditional entities row (#22543)

This commit is contained in:
karwosts
2024-10-28 00:25:03 -07:00
committed by GitHub
parent 42df951f89
commit 9b42494667

View File

@@ -81,13 +81,7 @@ const callServiceEntitiesRowConfigStruct = object({
const conditionalEntitiesRowConfigStruct = object({
type: literal("conditional"),
row: any(),
conditions: array(
object({
entity: string(),
state: optional(string()),
state_not: optional(string()),
})
),
conditions: array(any()),
});
const dividerEntitiesRowConfigStruct = object({