Object.keys to for

This commit is contained in:
J. Nick Koston 2023-01-21 17:50:22 -10:00
parent 545f81fa24
commit 26730cb2e2

View File

@ -330,7 +330,7 @@ class HuiMapCard extends LitElement implements LovelaceCard {
const paths: HaMapPaths[] = []; const paths: HaMapPaths[] = [];
Object.keys(history).forEach((entityId) => { for (const entityId of Object.keys(history)) {
const entityStates = history[entityId]; const entityStates = history[entityId];
if (entityStates?.length > 1) { if (entityStates?.length > 1) {
// filter location data from states and remove all invalid locations // filter location data from states and remove all invalid locations
@ -364,7 +364,7 @@ class HuiMapCard extends LitElement implements LovelaceCard {
gradualOpacity: 0.8, gradualOpacity: 0.8,
}); });
} }
}); }
return paths; return paths;
} }
); );