Fixes #109 - ensure sl-form finds all nested controls

pull/122/head
Chris Haynes 2020-07-18 22:56:18 +01:00
rodzic aaf0f9f69e
commit 5709d993ef
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -184,6 +184,7 @@ export class Form {
const tags = this.formControls.map(control => control.tag);
return slot
.assignedElements({ flatten: true })
.reduce((all, el) => all.concat(el, [...el.querySelectorAll('*')]), [])
.filter(el => tags.includes(el.tagName.toLowerCase())) as HTMLElement[];
}