From 273a8e06f3e426b9c4ca48dd5262cfd4b910a55f Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Fri, 28 Apr 2023 14:10:45 +0200 Subject: [PATCH] load entity bulk action in components --- .../collection/collection-selection-actions.element.ts | 2 -- .../src/backoffice/shared/components/index.ts | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/collection/collection-selection-actions.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/collection/collection-selection-actions.element.ts index 925f23c1c9..3ccc0143ef 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/collection/collection-selection-actions.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/collection/collection-selection-actions.element.ts @@ -8,8 +8,6 @@ import { UmbLitElement } from '@umbraco-cms/internal/lit-element'; import { umbExtensionsRegistry } from '@umbraco-cms/backoffice/extensions-api'; import { UmbExecutedEvent } from '@umbraco-cms/backoffice/events'; -import '../entity-bulk-action/entity-bulk-action.element'; - @customElement('umb-collection-selection-actions') export class UmbCollectionSelectionActionsElement extends UmbLitElement { #entityType?: string; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/index.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/index.ts index a56e0ab18f..eebb33e130 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/index.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/index.ts @@ -45,6 +45,8 @@ import './tree/tree.element'; import './tree/entity-tree-item/entity-tree-item.element'; import './tree/tree-menu-item/tree-menu-item.element'; +import './entity-bulk-action/entity-bulk-action.element'; + import './menu/menu-item-base/menu-item-base.element'; import './variantable-property/variantable-property.element';