Only show nested entities with a null category

This commit is contained in:
Christopher Altona 2022-06-30 03:06:24 +00:00
parent 8ac6ae1187
commit 8940397b23
1 changed files with 1 additions and 3 deletions

View File

@ -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() {