mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-19 15:26:36 +00:00
Fix integrations page (#8457)
This commit is contained in:
parent
32ba8f4731
commit
60bf1a5451
@ -198,8 +198,7 @@ class HaConfigIntegrations extends SubscribeMixin(LitElement) {
|
||||
for (let i = filteredConfigEnties.length - 1; i >= 0; i--) {
|
||||
if (filteredConfigEnties[i].source === "ignore") {
|
||||
ignored.push(filteredConfigEnties.splice(i, 1)[0]);
|
||||
}
|
||||
if (filteredConfigEnties[i].disabled_by !== null) {
|
||||
} else if (filteredConfigEnties[i].disabled_by !== null) {
|
||||
disabled.push(filteredConfigEnties.splice(i, 1)[0]);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user