web: fix t.reset is not a function

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-05-19 23:37:23 +02:00
parent acf1ad91d9
commit 19371dad65
4 changed files with 4 additions and 7 deletions

View File

@ -76,10 +76,7 @@ export class Form<T> extends LitElement {
*/
reset(): void {
const ironForm = this.shadowRoot?.querySelector("iron-form");
if (!ironForm) {
return;
}
ironForm.reset();
ironForm?.reset();
}
/**