await request before submit gets resolved

This commit is contained in:
Niels Lyngsø
2024-11-07 14:31:25 +01:00
parent 5cc38056bf
commit 74fbbb08e1

View File

@@ -133,9 +133,9 @@ export abstract class UmbEntityDetailWorkspaceContextBase<
}
if (this.getIsNew()) {
this.#create(currentData);
await this.#create(currentData);
} else {
this.#update(currentData);
await this.#update(currentData);
}
}