diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/property-editor.model.ts b/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/property-editor.model.ts index db29d02504..574ec02770 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/property-editor.model.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/extension-registry/models/property-editor.model.ts @@ -14,21 +14,13 @@ export interface MetaPropertyEditorUi { * The group that this property editor UI belongs to, which will be used to group the property editor UIs in the property editor picker. * If not specified, the property editor UI will be grouped under "Common". * @default "Common" - * @examples [ - * "Common", - * "Content", - * "Media" - * ] + * @examples ["Common", "Content", "Media"] */ group: string; /** * The alias of the property editor schema that this property editor UI is for. * If not specified, the property editor UI can only be used to configure other property editors. - * @examples [ - * "Umbraco.TextBox", - * "Umbraco.TextArea", - * "Umbraco.Label", - * ] + * @examples ["Umbraco.TextBox", "Umbraco.TextArea", "Umbraco.Label"] */ propertyEditorSchemaAlias?: string; settings?: PropertyEditorSettings;