This commit is contained in:
Yeicor
2024-05-12 13:26:20 +02:00
committed by GitHub
parent 097b17386b
commit 1d4e9efc5c

View File

@@ -56,7 +56,8 @@ export async function mergePartial(url: string, name: string, document: Document
await newDoc.transform(setNames(name));
// Merge the new document into the current one
return mergeDocuments(document, newDoc);
mergeDocuments(document, newDoc);
return document;
}
export async function mergeFinalize(document: Document): Promise<Document> {