This commit is contained in:
Thomas Lovén 2020-01-09 12:06:50 +01:00
parent 1f366b935d
commit f4d1b54579
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -72,7 +72,7 @@ export function entity_filter(hass, filter) {
case "attributes":
for(const [k, v] of Object.entries(value)) {
let attr = k.split(" ")[0];
let attr = k.trim();
let entityAttribute = entity.attributes;
while(attr && entityAttribute) {
let step;