From e9cac94aee31fb440dabdae7cdc684b7c49bccd6 Mon Sep 17 00:00:00 2001 From: Simon Lamon <32477463+silamon@users.noreply.github.com> Date: Tue, 26 Mar 2024 19:48:36 +0100 Subject: [PATCH] Show integration page if no integrations are configured (#20107) * Show integration page if no integrations are configured * Feedback --- src/panels/config/integrations/ha-config-integrations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/config/integrations/ha-config-integrations.ts b/src/panels/config/integrations/ha-config-integrations.ts index 5ce9459e0a..aa218486ff 100644 --- a/src/panels/config/integrations/ha-config-integrations.ts +++ b/src/panels/config/integrations/ha-config-integrations.ts @@ -88,7 +88,7 @@ class HaConfigIntegrations extends SubscribeMixin(HassRouterPage) { window.setTimeout(resolve, 0); }) ); - let fullUpdate = false; + let fullUpdate = this._configEntries === undefined; const newEntries: ConfigEntryExtended[] = []; messages.forEach((message) => { if (message.type === null || message.type === "added") {