Swap default positions of increment and decrement in counter actions feature (#24418)

This commit is contained in:
Jan-Philipp Benecke 2025-02-27 10:46:01 +01:00 committed by GitHub
parent 54cc8f025c
commit 5dded38ccc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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];