Skip to content

Commit

Permalink
Show integration page if no integrations are configured (#20107)
Browse files Browse the repository at this point in the history
* Show integration page if no integrations are configured

* Feedback
  • Loading branch information
silamon committed Mar 26, 2024
1 parent 5289cd3 commit e9cac94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panels/config/integrations/ha-config-integrations.ts
Expand Up @@ -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") {
Expand Down

0 comments on commit e9cac94

Please sign in to comment.