From 33d2a022f09f6baeb70454d7c8f19d6fb29dfd7b Mon Sep 17 00:00:00 2001 From: leekelleher Date: Thu, 29 Feb 2024 18:44:22 +0000 Subject: [PATCH] DataType config clean-up: RichText Moves `blocks` from the UI settings to the schema. --- .../core/property-editor/schemas/Umbraco.RichText.ts | 6 ++++++ .../tiny-mce/property-editors/tiny-mce/manifests.ts | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.RichText.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.RichText.ts index d13575c27f..7f8300bb67 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.RichText.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.RichText.ts @@ -19,6 +19,12 @@ export const manifest: ManifestPropertyEditorSchema = { label: 'Ignore User Start Nodes', propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle', }, + { + alias: 'blocks', + label: 'Available Blocks', + description: 'Define the available blocks.', + propertyEditorUiAlias: 'Umb.PropertyEditorUi.BlockRteTypeConfiguration', + }, ], }, }, diff --git a/src/Umbraco.Web.UI.Client/src/packages/tiny-mce/property-editors/tiny-mce/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/tiny-mce/property-editors/tiny-mce/manifests.ts index 338f11af6a..061aef02a3 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tiny-mce/property-editors/tiny-mce/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tiny-mce/property-editors/tiny-mce/manifests.ts @@ -231,12 +231,6 @@ export const manifest: ManifestPropertyEditorUi = { label: 'Hide Label', propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle', }, - { - alias: 'blocks', - label: 'Available Blocks', - description: 'Define the available blocks.', - propertyEditorUiAlias: 'Umb.PropertyEditorUi.BlockRteTypeConfiguration', - }, ], }, },