SUPPORT-8846: fix load

This commit is contained in:
gulnaz 2025-01-15 10:36:29 +03:00
parent 117891dc10
commit 7e9611a3f4
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ export class LoadForm extends Form {
}
loadData(): Promise<any> {
return Promise.resolve().then(() => this.setData(this.fieldDataList));
return this.setData(this.fieldDataList);
}
saveData(): Promise<any> {