From 792c0d0c840612fe57aa6bf0087829bacac9f447 Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Sun, 3 May 2020 14:06:43 +0000 Subject: [PATCH] Resolves #545 handle hidden entities for Lovelace --- lib/cards/card.class.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cards/card.class.dart b/lib/cards/card.class.dart index 0bbc7eb..bdc48c4 100644 --- a/lib/cards/card.class.dart +++ b/lib/cards/card.class.dart @@ -91,7 +91,7 @@ class CardData { List getEntitiesToShow() { return entities.where((entityWrapper) { - if (HomeAssistant().autoUi && entityWrapper.entity.isHidden) { + if (entityWrapper.entity.isHidden) { return false; } List currentStateFilter;