[DURACOM-191] change routing for workflowitems-edit-page

This commit is contained in:
Andrea Barbasso
2024-01-10 17:03:40 +01:00
parent 43241a237a
commit ca09cfb07b
2 changed files with 3 additions and 3 deletions

View File

@@ -186,8 +186,8 @@ import { ThemedPageErrorComponent } from './page-error/themed-page-error.compone
},
{
path: WORKFLOW_ITEM_MODULE_PATH,
loadChildren: () => import('./workflowitems-edit-page/workflowitems-edit-page.routes')
.then((m) => m.workflowItemsEditPageRoutes),
loadChildren: () => import('./workflowitems-edit-page/workflowitems-edit-page-routes')
.then((m) => m.ROUTES),
canActivate: [EndUserAgreementCurrentUserGuard]
},
{

View File

@@ -21,7 +21,7 @@ import {
AdvancedWorkflowActionPageComponent
} from './advanced-workflow-action/advanced-workflow-action-page/advanced-workflow-action-page.component';
export const workflowItemsEditPageRoutes: Routes = [
export const ROUTES: Routes = [
{
path: ':id',
resolve: {wfi: WorkflowItemPageResolver},