diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/index.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/index.ts index e8c731ce63..d30f050efd 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/index.ts @@ -1,4 +1,4 @@ export * from './types/index.js'; export * from './events/index.js'; -export const UMB_PROPERTY_EDITOR_SCHEMA_ALIAS_DEFAULT = 'Umbraco.JSON'; +export const UMB_PROPERTY_EDITOR_SCHEMA_ALIAS_DEFAULT = 'Umbraco.Label'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.JSON.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.JSON.ts deleted file mode 100644 index 204a8df2ef..0000000000 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.JSON.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { ManifestPropertyEditorSchema } from '@umbraco-cms/backoffice/extension-registry'; - -export const manifest: ManifestPropertyEditorSchema = { - type: 'propertyEditorSchema', - name: 'JSON model', - alias: 'Umbraco.JSON', - meta: { - defaultPropertyEditorUiAlias: 'Umb.PropertyEditorUi.JSON', - }, -}; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts index 3a49b14704..83ff17871a 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts @@ -10,7 +10,6 @@ import { manifest as eyeDropper } from './Umbraco.ColorPicker.EyeDropper.js'; import { manifest as iconPicker } from './Umbraco.IconPicker.js'; import { manifest as imageCropper } from './Umbraco.ImageCropper.js'; import { manifest as integer } from './Umbraco.Integer.js'; -import { manifest as json } from './Umbraco.JSON.js'; import { manifest as label } from './Umbraco.Label.js'; import { manifest as listView } from './Umbraco.ListView.js'; import { manifest as markdownEditor } from './Umbraco.MarkdownEditor.js'; @@ -45,7 +44,6 @@ export const manifests: Array = [ iconPicker, imageCropper, integer, - json, label, listView, markdownEditor,