Skip to content

Commit

Permalink
Don't hide location entities that are "home" in the MapViewStrategy (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypfer authored Jan 21, 2025
1 parent c4b2896 commit eaab19f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/panels/lovelace/strategies/map/map-view-strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const getMapEntities = (hass: HomeAssistant) => {
const locationEntities: string[] = [];
Object.values(hass.states).forEach((entity) => {
if (
entity.state === "home" ||
!("latitude" in entity.attributes) ||
!("longitude" in entity.attributes)
) {
Expand Down

0 comments on commit eaab19f

Please sign in to comment.