Merge pull request #1326 from umbraco/chore/data-type-config-clean--rte

Chore: Data Type Config clean-up: RichText
This commit is contained in:
Lee Kelleher
2024-03-01 08:12:46 +00:00
committed by GitHub
2 changed files with 8 additions and 7 deletions

View File

@@ -12,13 +12,20 @@ export const manifest: ManifestPropertyEditorSchema = {
alias: 'mediaParentId',
label: 'Image Upload Folder',
description: 'Choose the upload location of pasted images',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.TreePicker',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.MediaPicker',
config: [{ alias: 'validationLimit', value: { min: 0, max: 1 } }],
},
{
alias: 'ignoreUserStartNodes',
label: 'Ignore User Start Nodes',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle',
},
{
alias: 'blocks',
label: 'Available Blocks',
description: 'Define the available blocks.',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.BlockRteTypeConfiguration',
},
],
},
},

View File

@@ -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',
},
],
},
},