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 81f2d8eae8..2e73f3566a 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 @@ -15,7 +15,6 @@ import { manifest as tags } from './Umbraco.Tags.js'; import { manifest as richText } from './Umbraco.RichText.js'; import { manifest as trueFalse } from './Umbraco.TrueFalse.js'; import { manifest as uploadField } from './Umbraco.UploadField.js'; -import { manifest as userPicker } from './Umbraco.UserPicker.js'; import type { ManifestPropertyEditorSchema } from '@umbraco-cms/backoffice/extension-registry'; @@ -37,5 +36,4 @@ export const manifests: Array = [ richText, trueFalse, uploadField, - userPicker, ]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.UserPicker.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user/property-editor/user-picker/Umbraco.UserPicker.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.UserPicker.ts rename to src/Umbraco.Web.UI.Client/src/packages/user/user/property-editor/user-picker/Umbraco.UserPicker.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user/property-editor/user-picker/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user/property-editor/user-picker/manifests.ts index 1d417a8188..dc0dccaff7 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/user/user/property-editor/user-picker/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/user/user/property-editor/user-picker/manifests.ts @@ -1,3 +1,4 @@ +import { manifest as userPickerSchemaManifest } from './Umbraco.UserPicker.js'; import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; export const manifests: Array = [ @@ -13,4 +14,5 @@ export const manifests: Array = [ group: 'people', }, }, + userPickerSchemaManifest, ];