From 8940397b2379e1381e835ddbaae59d68e9224b4e Mon Sep 17 00:00:00 2001 From: Christopher Altona Date: Thu, 30 Jun 2022 03:06:24 +0000 Subject: [PATCH] Only show nested entities with a null category --- src/panels/history/ha-panel-history.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/panels/history/ha-panel-history.ts b/src/panels/history/ha-panel-history.ts index 7523135cbd..50b037dc9c 100644 --- a/src/panels/history/ha-panel-history.ts +++ b/src/panels/history/ha-panel-history.ts @@ -316,9 +316,7 @@ class HaPanelHistory extends SubscribeMixin(LitElement) { private _shouldShowEntityByLargerSelection( entity: EntityRegistryEntry ): boolean { - return ( - entity.entity_category === null || entity.entity_category === "config" - ); + return entity.entity_category === null; } private async _getHistory() {