Show integration page if no integrations are configured (#20107)

* Show integration page if no integrations are configured

* Feedback
pull/20196/head
Simon Lamon 2024-03-26 19:48:36 +01:00 committed by GitHub
parent 5289cd3af1
commit e9cac94aee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class HaConfigIntegrations extends SubscribeMixin(HassRouterPage) {
window.setTimeout(resolve, 0); window.setTimeout(resolve, 0);
}) })
); );
let fullUpdate = false; let fullUpdate = this._configEntries === undefined;
const newEntries: ConfigEntryExtended[] = []; const newEntries: ConfigEntryExtended[] = [];
messages.forEach((message) => { messages.forEach((message) => {
if (message.type === null || message.type === "added") { if (message.type === null || message.type === "added") {