From 8269fe9bdef8136a2155249fc90b92f35568ce7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Fri, 21 Apr 2023 12:17:07 +0200 Subject: [PATCH] remove setPropertyValue method --- .../workspace/document-type-workspace.context.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/documents/document-types/workspace/document-type-workspace.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/documents/document-types/workspace/document-type-workspace.context.ts index 9545be917d..3c8da6b921 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/documents/document-types/workspace/document-type-workspace.context.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/documents/document-types/workspace/document-type-workspace.context.ts @@ -62,10 +62,6 @@ export class UmbDocumentTypeWorkspaceContext this.cleanup = this.structure.rootDocumentTypeObservablePart((data) => data?.defaultTemplateId); } - public setPropertyValue(alias: string, value: unknown) { - throw new Error('setPropertyValue is not implemented for UmbDocumentTypeWorkspaceContext'); - } - getData() { return this.structure.getRootDocumentType() || {}; }