diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/entity-actions/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/entity-actions/manifests.ts index 92143026f6..0146101914 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/entity-actions/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/entity-actions/manifests.ts @@ -1,5 +1,5 @@ import { UMB_STYLESHEET_ENTITY_TYPE } from '../entity.js'; -import { UMB_STYLESHEET_REPOSITORY_ALIAS } from '../repository/index.js'; +import { UMB_STYLESHEET_DETAIL_REPOSITORY_ALIAS } from '../repository/index.js'; import { manifests as createManifests } from './create/manifests.js'; import { UmbDeleteEntityAction } from '@umbraco-cms/backoffice/entity-action'; import { ManifestEntityAction } from '@umbraco-cms/backoffice/extension-registry'; @@ -13,7 +13,7 @@ const stylesheetActions: Array = [ meta: { icon: 'icon-trash', label: 'Delete', - repositoryAlias: UMB_STYLESHEET_REPOSITORY_ALIAS, + repositoryAlias: UMB_STYLESHEET_DETAIL_REPOSITORY_ALIAS, entityTypes: [UMB_STYLESHEET_ENTITY_TYPE], }, }, diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/repository/index.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/repository/index.ts index c34089a36b..3f00980578 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/repository/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/stylesheets/repository/index.ts @@ -1,5 +1,5 @@ export * from './item/index.js'; export * from './stylesheet-detail.repository.js'; -export { UMB_STYLESHEET_DETAIL_REPOSITORY_ALIAS as UMB_STYLESHEET_REPOSITORY_ALIAS } from './manifests.js'; +export { UMB_STYLESHEET_DETAIL_REPOSITORY_ALIAS } from './manifests.js'; export { type UmbStylesheetDetailStore, UMB_STYLESHEET_DETAIL_STORE_CONTEXT } from './stylesheet-detail.store.js';