mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-26 02:36:37 +00:00
Fix reversal in power icon (#7188)
This commit is contained in:
parent
0171f3aec7
commit
9ae8bd238b
@ -18,7 +18,7 @@ export const binarySensorIcon = (state?: string, stateObj?: HassEntity) => {
|
|||||||
case "garage_door":
|
case "garage_door":
|
||||||
return is_off ? "hass:garage" : "hass:garage-open";
|
return is_off ? "hass:garage" : "hass:garage-open";
|
||||||
case "power":
|
case "power":
|
||||||
return is_off ? "hass:power-plug" : "hass:power-plug-off";
|
return is_off ? "hass:power-plug-off" : "hass:power-plug";
|
||||||
case "gas":
|
case "gas":
|
||||||
case "problem":
|
case "problem":
|
||||||
case "safety":
|
case "safety":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user