From 5a91f613cad263c2dd67570443832548bfd0186e Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Mon, 15 Jan 2024 06:34:19 -0800 Subject: [PATCH] Remove fire-dom-event from action struct (#19390) --- src/panels/lovelace/editor/structs/action-struct.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/panels/lovelace/editor/structs/action-struct.ts b/src/panels/lovelace/editor/structs/action-struct.ts index 591b9c0e8f..d0229a9908 100644 --- a/src/panels/lovelace/editor/structs/action-struct.ts +++ b/src/panels/lovelace/editor/structs/action-struct.ts @@ -58,10 +58,6 @@ const actionConfigStructAssist = type({ start_listening: optional(boolean()), }); -const actionConfigStructCustom = type({ - action: literal("fire-dom-event"), -}); - export const actionConfigStructType = object({ action: enums([ "none", @@ -81,9 +77,6 @@ export const actionConfigStruct = dynamic((value) => { case "call-service": { return actionConfigStructService; } - case "fire-dom-event": { - return actionConfigStructCustom; - } case "navigate": { return actionConfigStructNavigate; }