diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/index.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/index.ts index aaf54dca9d..197ed94f82 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/index.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/index.ts @@ -5,7 +5,7 @@ import { manifests as dashboardManifests } from './dashboards/manifests'; import { manifests as dataTypeManifests } from './data-types/manifests'; import { manifests as extensionManifests } from './extensions/manifests'; import { manifests as languageManifests } from './languages/manifests'; -import { manifests as propertyActionManifests } from './property-actions/manifests'; +import { manifests as propertyActionManifests } from '../shared/property-actions/manifests'; import { manifests as propertyEditorModelManifests } from '../shared/property-editors/models/manifests'; import { manifests as propertyEditorUIManifests } from '../shared/property-editors/uis/manifests'; import { manifests as searchManifests } from '../search/manifests'; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/entity-property/entity-property.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/entity-property/entity-property.element.ts index a46efbe394..ed4201c4b6 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/entity-property/entity-property.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/entity-property/entity-property.element.ts @@ -6,7 +6,7 @@ import { createExtensionElement } from '@umbraco-cms/extensions-api'; import { umbExtensionsRegistry } from '@umbraco-cms/extensions-registry'; import type { ManifestPropertyEditorUI, ManifestTypes } from '@umbraco-cms/models'; -import '../../../settings/property-actions/shared/property-action-menu/property-action-menu.element'; +import '../../property-actions/shared/property-action-menu/property-action-menu.element'; import 'src/backoffice/shared/components/workspace/workspace-property-layout/workspace-property-layout.element'; import { UmbContextProviderController } from 'src/core/context-api/provide/context-provider.controller'; import { UmbControllerHostMixin } from 'src/core/controller/controller-host.mixin'; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/clear/property-action-clear.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/clear/property-action-clear.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/clear/property-action-clear.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/clear/property-action-clear.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/clear/property-action-clear.stories.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/clear/property-action-clear.stories.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/clear/property-action-clear.stories.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/clear/property-action-clear.stories.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/copy/property-action-copy.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/copy/property-action-copy.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/copy/property-action-copy.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/copy/property-action-copy.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/copy/property-action-copy.stories.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/copy/property-action-copy.stories.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/copy/property-action-copy.stories.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/copy/property-action-copy.stories.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/manifests.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/manifests.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/manifests.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/manifests.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action-menu/property-action-menu.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.context.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action-menu/property-action-menu.context.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.context.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action-menu/property-action-menu.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action-menu/property-action-menu.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action/property-action.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action/property-action.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action/property-action.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action/property-action.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action/property-action.model.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action/property-action.model.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/settings/property-actions/shared/property-action/property-action.model.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action/property-action.model.ts