From 698e12477cfaaf010aed74da4fb371533e2b3344 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Tue, 5 Apr 2022 14:49:13 -0400 Subject: [PATCH] LP1859701 fix routing from admin page Signed-off-by: Jason Etheridge --- Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts index 86752ff45e..a9f735faa8 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts @@ -71,7 +71,8 @@ const routes: Routes = [{ .then(m => m.FieldDocumentationModule) }, { path: 'money/cash_reports', - loadChildren: '@eg/staff/admin/local/cash-reports/cash-reports.module#CashReportsModule' + loadChildren: () => + import('./cash-reports/cash-reports.module').then(m => m.CashReportsModule) }, { path: ':schema/:table', component: BasicAdminPageComponent -- 2.11.0