From 344e083ac65b23607426227d06b2abbc1191076e Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Tue, 7 Jan 2025 00:10:26 -0800 Subject: [PATCH] Restore attributes removed from ha-entity-marker in ha-map (#23603) * Restore attributes removed from ha-entity-marker in ha-map * Use Reflect --- src/components/map/ha-entity-marker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/ha-entity-marker.ts b/src/components/map/ha-entity-marker.ts index 22de169418..c6764015bc 100644 --- a/src/components/map/ha-entity-marker.ts +++ b/src/components/map/ha-entity-marker.ts @@ -8,7 +8,7 @@ import "../ha-state-icon"; class HaEntityMarker extends LitElement { @property({ attribute: false }) public hass!: HomeAssistant; - @property({ attribute: "entity-id" }) public entityId?: string; + @property({ attribute: "entity-id", reflect: true }) public entityId?: string; @property({ attribute: "entity-name" }) public entityName?: string;