From 5dded38ccc5b71d853f1b63329947c38b0f51753 Mon Sep 17 00:00:00 2001 From: Jan-Philipp Benecke Date: Thu, 27 Feb 2025 10:46:01 +0100 Subject: [PATCH] Swap default positions of increment and decrement in counter actions feature (#24418) --- src/panels/lovelace/card-features/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/card-features/types.ts b/src/panels/lovelace/card-features/types.ts index 3b30ac46d8..743f1a607f 100644 --- a/src/panels/lovelace/card-features/types.ts +++ b/src/panels/lovelace/card-features/types.ts @@ -83,7 +83,7 @@ export interface ClimatePresetModesCardFeatureConfig { preset_modes?: string[]; } -export const COUNTER_ACTIONS = ["increment", "reset", "decrement"] as const; +export const COUNTER_ACTIONS = ["decrement", "reset", "increment"] as const; export type CounterActions = (typeof COUNTER_ACTIONS)[number];