From d52c7b28761f5a902646b7213bc7db0d253efa45 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 16 Nov 2023 18:23:31 +0100 Subject: [PATCH] update imports --- .../src/packages/templating/scripts/entity-actions/manifests.ts | 2 +- .../src/packages/templating/scripts/menu-item/manifests.ts | 2 -- .../src/packages/templating/scripts/tree/manifests.ts | 2 +- .../packages/templating/scripts/tree/script-tree.repository.ts | 2 +- .../src/packages/templating/scripts/workspace/manifests.ts | 2 +- 5 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/entity-actions/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/entity-actions/manifests.ts index 29e8a006f1..556c0194de 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/entity-actions/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/entity-actions/manifests.ts @@ -4,7 +4,7 @@ import { UMB_SCRIPT_FOLDER_ENTITY_TYPE, UMB_SCRIPT_ROOT_ENTITY_TYPE, UMB_SCRIPT_FOLDER_EMPTY_ENTITY_TYPE, -} from '../entities.js'; +} from '../entity.js'; import { UmbCreateScriptAction } from './create/create-empty.action.js'; import { UmbCreateFolderEntityAction, diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/menu-item/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/menu-item/manifests.ts index d9a345fe3f..50e0ac613e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/menu-item/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/menu-item/manifests.ts @@ -1,4 +1,3 @@ -import { UMB_SCRIPT_ENTITY_TYPE } from '../entities.js'; import { UMB_SCRIPT_TREE_ALIAS } from '../tree/index.js'; import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; @@ -13,7 +12,6 @@ const menuItem: ManifestTypes = { meta: { label: 'Scripts', icon: 'icon-folder', - entityType: UMB_SCRIPT_ENTITY_TYPE, treeAlias: UMB_SCRIPT_TREE_ALIAS, menus: ['Umb.Menu.Templating'], }, diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/manifests.ts index 79a5b3d038..9a7863bae1 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/manifests.ts @@ -1,4 +1,4 @@ -import { UMB_SCRIPT_ENTITY_TYPE, UMB_SCRIPT_ROOT_ENTITY_TYPE } from '../entities.js'; +import { UMB_SCRIPT_ENTITY_TYPE, UMB_SCRIPT_ROOT_ENTITY_TYPE } from '../entity.js'; import { UmbScriptTreeRepository } from './script-tree.repository.js'; import { UmbScriptTreeStore } from './script-tree.store.js'; import type { diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/script-tree.repository.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/script-tree.repository.ts index 058c84283f..7d51664995 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/script-tree.repository.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/tree/script-tree.repository.ts @@ -1,4 +1,4 @@ -import { UMB_SCRIPT_ROOT_ENTITY_TYPE } from '../entities.js'; +import { UMB_SCRIPT_ROOT_ENTITY_TYPE } from '../entity.js'; import { UmbScriptTreeServerDataSource } from './script-tree.server.data-source.js'; import { UmbScriptTreeItemModel, UmbScriptTreeRootModel } from './types.js'; import { UMB_SCRIPT_TREE_STORE_CONTEXT } from './script-tree.store.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/workspace/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/workspace/manifests.ts index 218114fecc..8b4cde99e5 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/workspace/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/workspace/manifests.ts @@ -1,4 +1,4 @@ -import { UMB_SCRIPT_ENTITY_TYPE } from '../entities.js'; +import { UMB_SCRIPT_ENTITY_TYPE } from '../entity.js'; import { UmbSaveWorkspaceAction } from '@umbraco-cms/backoffice/workspace'; import type { ManifestWorkspace, ManifestWorkspaceAction } from '@umbraco-cms/backoffice/extension-registry';