don't rename export

This commit is contained in:
Mads Rasmussen
2024-01-11 15:20:36 +01:00
parent 0affef07f7
commit a72f7ade9b
2 changed files with 3 additions and 3 deletions

View File

@@ -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<ManifestEntityAction> = [
meta: {
icon: 'icon-trash',
label: 'Delete',
repositoryAlias: UMB_STYLESHEET_REPOSITORY_ALIAS,
repositoryAlias: UMB_STYLESHEET_DETAIL_REPOSITORY_ALIAS,
entityTypes: [UMB_STYLESHEET_ENTITY_TYPE],
},
},

View File

@@ -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';