Merge branch 'lamplightdev-fix/form-controls' into next

pull/130/head
Cory LaViska 2020-07-18 20:39:23 -04:00
commit 4c2a8fdb7c
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[];
}