Update pages.py

This commit is contained in:
Johannes
2023-01-30 17:18:20 +01:00
committed by GitHub
parent 9f53350dd9
commit 9a3cc08db8

View File

@@ -288,7 +288,7 @@ class LuiPagesGen(object):
entityTypePanel = "text"
device_class = entity.attributes.get("device_class", "")
unit_of_measurement = entity.attributes.get("unit_of_measurement", "")
value = entity.state + " " + unit_of_measurement
value = entity.state + unit_of_measurement
if entityType == "binary_sensor":
value = get_translation(self._locale, f"backend.component.binary_sensor.state.{device_class}.{entity.state}")
if cardType == "cardGrid" and entityType == "sensor" and icon is None:
@@ -933,4 +933,4 @@ class LuiPagesGen(object):
def send_message_page(self, ident, heading, msg, b1, b2):
self._send_mqtt_msg(f"pageType~popupNotify")
self._send_mqtt_msg(f"entityUpdateDetail~{ident}~{heading}~65535~{b1}~65535~{b2}~65535~{msg}~65535~0")