diff --git a/src/panels/config/integrations/ha-config-integrations-dashboard.ts b/src/panels/config/integrations/ha-config-integrations-dashboard.ts index 5524c31d26..179167cd22 100644 --- a/src/panels/config/integrations/ha-config-integrations-dashboard.ts +++ b/src/panels/config/integrations/ha-config-integrations-dashboard.ts @@ -376,10 +376,9 @@ class HaConfigIntegrationsDashboard extends SubscribeMixin(LitElement) { `} - -
- ${this._showIgnored - ? ignoredConfigEntries.map( + ${this._showIgnored + ? html`
+ ${ignoredConfigEntries.map( (entry: ConfigEntryExtended) => html` ` - ) - : ""} - ${configEntriesInProgress.length - ? configEntriesInProgress.map( + )} +
` + : ""} + ${configEntriesInProgress.length + ? html`
+ ${configEntriesInProgress.map( (flow: DataEntryFlowProgressExtended) => html` ` - ) - : ""} - ${this._showDisabled - ? disabledConfigEntries.map( + )} +
` + : ""} + ${this._showDisabled + ? html`
+ ${disabledConfigEntries.map( (entry: ConfigEntryExtended) => html` ` - ) - : ""} + )} +
` + : ""} +
${integrations.length ? integrations.map( ([domain, items]) => @@ -744,6 +749,8 @@ class HaConfigIntegrationsDashboard extends SubscribeMixin(LitElement) { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-gap: 16px 16px; padding: 8px 16px 16px; + } + .container:last-of-type { margin-bottom: 64px; } .container > * {