remove console.log

This commit is contained in:
Niels Lyngsø
2023-06-07 18:41:44 +02:00
parent 08b3c0c1bf
commit 413131cc76

View File

@@ -139,7 +139,6 @@ export class UmbContentTypePropertyStructureHelper {
async partialUpdateProperty(propertyKey?: string, partialUpdate?: Partial<DocumentTypePropertyTypeResponseModel>) {
await this.#init;
if (!this.#structure || !propertyKey || !partialUpdate) return;
console.log("partial update", propertyKey, partialUpdate);
return await this.#structure.updateProperty(null, propertyKey, partialUpdate);
}
}