Fix Entity Toggle not working for Type Row (#7289)

This commit is contained in:
Zack Barett 2020-10-12 03:26:23 -05:00 committed by GitHub
parent d9a954ca91
commit 80c7a8473a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,7 +204,7 @@ class HuiEntitiesCard extends LitElement implements LovelaceCard {
<hui-entities-toggle
.hass=${this._hass}
.entities=${(this._configEntities!.filter(
(conf) => !("type" in conf)
(conf) => "entity" in conf
) as EntityConfig[]).map((conf) => conf.entity)}
></hui-entities-toggle>
`}