fix(core): update

This commit is contained in:
2023-08-19 18:56:32 +02:00
parent 621262fde7
commit 9d952afebb
4 changed files with 21 additions and 6 deletions

View File

@ -45,6 +45,7 @@ export class DeesForm extends DeesElement {
public name: string = 'myform';
public changeSubject = new domtools.rxjs.Subject();
public readyDeferred = domtools.plugins.smartpromise.defer();
public render(): TemplateResult {
return html`
@ -70,6 +71,7 @@ export class DeesForm extends DeesElement {
});
}
await this.addBehaviours();
this.readyDeferred.resolve();
}
public getFormElements(): Array<TFormInputElement> {