Hi all,
after some searching on google and co. I can’t find any solution for my problem. I’ve updated HA (Docker) last week. Everthing works fine but when I click on some sensors on the dashboard it shows the “info” tab with a timeline over e.g 150 years:
Here is an example config part for a sensor:
type: glance
entities:
- entity: sensor.bad_temperature
name: Bad
card_mod:
style: |
:host {
--card-mod-icon-color:
{% if states('sensor.bad_heating')|float > 65 %}
red
{% elif states('sensor.bad_heating')|float <= 65 and states('sensor.bad_heating')|float > 32 %}
orange
{% elif states('sensor.bad_heating')|float <= 32 and states('sensor.bad_heating')|float > 0 %}
#F2E431
{% elif states('sensor.bad_heating')|float == 0 %}
var( ---state-icon-color )
{% endif %}
;
--card-mod-icon:
{% if states('sensor.bad_heating')|float == 0 %}
mdi:sleep
{% else %}
mdi:fire
{% endif %}
;
}
......
......
state_color: true
columns: 5
Could anybody help me to solve this problem? Thanks a lot!