diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/views/edit/workspace-view-data-type-edit.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/views/edit/workspace-view-data-type-edit.element.ts index a4d8b3e8a5..aeecef13fa 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/views/edit/workspace-view-data-type-edit.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/views/edit/workspace-view-data-type-edit.element.ts @@ -59,7 +59,7 @@ export class UmbWorkspaceViewDataTypeEditElement extends UmbLitElement { return; } - this.observe(this._workspaceContext.data, (dataType) => { + this.observe(this._workspaceContext.data, (dataType) => { if (!dataType) return; // TODO: handle if model is not of the type wanted. @@ -78,7 +78,7 @@ export class UmbWorkspaceViewDataTypeEditElement extends UmbLitElement { private _observePropertyEditorUI(propertyEditorUIAlias: string | null) { if (!propertyEditorUIAlias) return; - this.observe( + this.observe( umbExtensionsRegistry.getByAlias(propertyEditorUIAlias), (propertyEditorUI) => { this._propertyEditorUIName = propertyEditorUI?.meta.label ?? propertyEditorUI?.name ?? '';