Since about 2 weeks I have noticed that some logic I use within a dashboard card is not working on the android companion app where it does work within a browser.
I have an entities card with the following logic
card_mod:
style:
hui-generic-entity-row $: |
.text-content:not(.info) {
color:
{% if (states(‘sensor.stock_change_today’)[:1]) == ‘-’ %}
red
{% else %}
green
{% endif %}
}
This is working perfectly fine on desktop browser but no longer on android app. Has something changed recently that broke this logic somehow.
Right now my phone shows the app was updated 2 days ago and when I check the version it shows 2025.11.1-full (18678). The issue has been there for longer than 2 days though. From memory I did update the app somewhere like 1-2 weeks ago but not in the last 2 days so not sure why it says that.
Does anybody know whether something has changed within the android app that could have caused this as card_mod has not been updated for quite some time.