Changing element to unknown

This commit is contained in:
Zack Arnett 2018-10-23 16:39:37 -04:00
parent 06aef18d0c
commit 0856073e85

View File

@ -39,7 +39,7 @@ class HuiEntitiesCard extends HassLocalizeLitMixin(LitElement)
if (this.shadowRoot) { if (this.shadowRoot) {
this.shadowRoot this.shadowRoot
.querySelectorAll("#states > *") .querySelectorAll("#states > *")
.forEach((element: any) => { .forEach((element: unknown) => {
(element as EntityRow).hass = hass; (element as EntityRow).hass = hass;
}); });
} }