correct names

This commit is contained in:
Niels Lyngsø
2023-02-22 11:03:45 +01:00
parent 55621c6807
commit 8b9e205590

View File

@@ -56,14 +56,14 @@ export class UmbWorkspaceDocumentTypeContext
}
async createScaffold(parentKey: string | null) {
const { data } = await this.#repo.createDetailsScaffold(parentKey);
const { data } = await this.#repo.createScaffold(parentKey);
if (!data) return;
this.#data.next(data);
}
async save() {
if (!this.#data.value) return;
this.#repo.saveDetail(this.#data.value);
this.#repo.save(this.#data.value);
}
public destroy(): void {