Merge branch 'release/15.0'

This commit is contained in:
Niels Lyngsø
2024-11-07 14:58:10 +01:00

View File

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