I'm having a weird issue with a badge in my sections dashboard. I have a badge that displays when my AC (climate.air_conditioner) is on, with a tap action of "More Details". This was working perfectly previously, and still is for the most part, but when I try to click the badge now the more info dialog that pops up says "climate.living_room_ac is not available", which doesn't make sense because that device ID doesn't and has never existed, and that's not the entity that is tagged in the badge. What could be causing this? Very confusing.
#A/C badge linking wrong device
1 messages · Page 1 of 1 (latest)
Badge correctly reflects the entity state, but this is what I get when I click it
I've had this set up since the new badges launched, and it was working perfectly up until the last few days
this is the only "climate." domain device I currently have in HA
Do you have a custom tap action set? What is the full yaml of the badge?
Tap action is set to "More Details" the yaml for this individual badge is:
- type: entity
show_state: true
show_icon: true
visibility:
- condition: or
conditions:
- condition: state
entity: climate.air_conditioner
state_not: "off"
- condition: numeric_state
entity: sensor.h5074_6cb3_temperature
above: 80
- condition: state
entity: sensor.season
state: summer
tap_action:
action: more-info
entity: climate.living_room_ac
color: primary
entity: climate.air_conditioner```