diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/core/components/property-type-based-property/property-type-based-property.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/core/components/property-type-based-property/property-type-based-property.element.ts index 6e2e393a91..fa5a82a92e 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/core/components/property-type-based-property/property-type-based-property.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/core/components/property-type-based-property/property-type-based-property.element.ts @@ -93,7 +93,7 @@ export class UmbPropertyTypeBasedPropertyElement extends UmbLitElement { this._dataTypeObserver = this.observe( await this._dataTypeRepository.byId(dataTypeId), (dataType) => { - this._dataTypeData = new UmbDataTypePropertyCollection(dataType?.values || []); + this._dataTypeData = new UmbDataTypePropertyCollection(dataType?.values); this._propertyEditorUiAlias = dataType?.propertyEditorUiAlias || undefined; }, 'observeDataType'