diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/editor-data-type.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/editor-data-type.element.ts index 55b2c4ca0a..555e0c8b7c 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/editor-data-type.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/editor-data-type.element.ts @@ -13,7 +13,7 @@ import '../../components/editor-entity.element'; // Lazy load // TODO: Make this dynamic, use load-extensions method to loop over extensions for this node. -import '../../editor-views/editor-view-data-type-edit.element'; +import './views/editor-view-data-type-edit.element'; @customElement('umb-editor-data-type') export class UmbEditorDataTypeElement extends UmbContextProviderMixin(UmbContextConsumerMixin(LitElement)) { diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editor-views/editor-view-data-type-edit.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/views/editor-view-data-type-edit.element.ts similarity index 92% rename from src/Umbraco.Web.UI.Client/src/backoffice/editor-views/editor-view-data-type-edit.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/views/editor-view-data-type-edit.element.ts index dd6c774a27..d0f40d1b36 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/editor-views/editor-view-data-type-edit.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/data-type/views/editor-view-data-type-edit.element.ts @@ -2,11 +2,11 @@ import { css, html, LitElement } from 'lit'; import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { customElement, state } from 'lit/decorators.js'; import { ifDefined } from 'lit/directives/if-defined.js'; -import { UmbContextConsumerMixin } from '../../core/context'; -import type { DataTypeEntity } from '../../mocks/data/data-type.data'; -import type { UmbExtensionManifestPropertyEditorUI, UmbExtensionRegistry } from '../../core/extension'; +import { UmbContextConsumerMixin } from '../../../../core/context'; +import type { DataTypeEntity } from '../../../../mocks/data/data-type.data'; +import type { UmbExtensionManifestPropertyEditorUI, UmbExtensionRegistry } from '../../../../core/extension'; import { Subscription, distinctUntilChanged } from 'rxjs'; -import { UmbDataTypeContext } from '../editors/data-type/data-type.context'; +import { UmbDataTypeContext } from '../data-type.context'; import { UUIComboboxListElement, UUIComboboxListEvent } from '@umbraco-ui/uui'; @customElement('umb-editor-view-data-type-edit') diff --git a/src/Umbraco.Web.UI.Client/src/temp-internal-manifests.ts b/src/Umbraco.Web.UI.Client/src/temp-internal-manifests.ts index e32a92a326..8647b36ef8 100644 --- a/src/Umbraco.Web.UI.Client/src/temp-internal-manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/temp-internal-manifests.ts @@ -123,7 +123,7 @@ export const internalManifests: Array = [ alias: 'Umb.EditorView.DataTypeEdit', name: 'Edit', elementName: 'umb-editor-view-data-type-edit', - js: () => import('./backoffice/editor-views/editor-view-data-type-edit.element'), + js: () => import('./backoffice/editors/data-type/views/editor-view-data-type-edit.element'), meta: { // TODO: how do we want to filter where editor views are shown? https://our.umbraco.com/documentation/extending/Content-Apps/#setting-up-the-plugin // this is a temp solution