diff --git a/web/static/src/ts/core/Widget.ts b/web/static/src/ts/core/Widget.ts index 84848038..eed9bcf8 100644 --- a/web/static/src/ts/core/Widget.ts +++ b/web/static/src/ts/core/Widget.ts @@ -148,7 +148,7 @@ export class Widget { async updateState(nextState: Object) { Object.assign(this.state, nextState); if (this.__widget__.isStarted) { - await this.render(); + return this.render(); } }