mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 04:39:01 +00:00
Filter met during onboarding (#3285)
* Filter met during onboarding * Hide temp values with no value
This commit is contained in:
@@ -151,7 +151,10 @@ class OnboardingIntegrations extends LitElement {
|
||||
getConfigEntries(this.hass!),
|
||||
]);
|
||||
this._discovered = discovered;
|
||||
this._entries = entries;
|
||||
// We filter out the config entry for the local weather.
|
||||
// It is one that we create automatically and it will confuse the user
|
||||
// if it starts showing up during onboarding.
|
||||
this._entries = entries.filter((entry) => entry.domain !== "met");
|
||||
}
|
||||
|
||||
private async _finish() {
|
||||
|
||||
Reference in New Issue
Block a user