Also show sub entry services when sub entry expanded (#25900)

This commit is contained in:
Paulus Schoutsen 2025-06-24 13:46:47 -04:00 committed by GitHub
parent 31bc708725
commit 35ba2fffda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -165,6 +165,16 @@ class HaConfigSubEntryRow extends LitElement {
.entities=${this.entities}
></ha-config-entry-device-row>`
)}
${services.map(
(service) =>
html`<ha-config-entry-device-row
.hass=${this.hass}
.narrow=${this.narrow}
.entry=${this.entry}
.device=${service}
.entities=${this.entities}
></ha-config-entry-device-row>`
)}
`
: nothing}
</ha-md-list>`;