From 5b7c20af33aea107a1dc2f617344e9cdd29c276c Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Mon, 5 Aug 2024 08:15:39 -0700 Subject: [PATCH] fix broken perform-action translation in gauge card editor (#21589) --- .../lovelace/editor/config-elements/hui-gauge-card-editor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts b/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts index b1db02d715..b2e6bd3543 100644 --- a/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts +++ b/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts @@ -23,7 +23,7 @@ import { baseLovelaceCardConfig } from "../structs/base-card-struct"; import { DEFAULT_MIN, DEFAULT_MAX } from "../../cards/hui-gauge-card"; import { UiAction } from "../../components/hui-action-editor"; -const TAP_ACTIONS: UiAction[] = ["navigate", "url", "call-service", "none"]; +const TAP_ACTIONS: UiAction[] = ["navigate", "url", "perform-action", "none"]; const gaugeSegmentStruct = object({ from: number(),