mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 10:59:50 +00:00
Utilize Hide Hidden Entities
This commit is contained in:
@@ -238,7 +238,10 @@ const computeDefaultViewStates = (
|
||||
const hiddenEntities = new Set(
|
||||
entityEntries
|
||||
.filter(
|
||||
(entry) => entry.entity_category || HIDE_PLATFORM.has(entry.platform)
|
||||
(entry) =>
|
||||
entry.entity_category ||
|
||||
HIDE_PLATFORM.has(entry.platform) ||
|
||||
entry.hidden_by
|
||||
)
|
||||
.map((entry) => entry.entity_id)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user