From 8b2121d67d9d9a42589753389ed81110ddc1c568 Mon Sep 17 00:00:00 2001 From: Sergey Andrievskiy Date: Tue, 2 Jul 2019 12:22:54 +0300 Subject: [PATCH] feat: enable "miscellaneous" route --- src/app/pages/pages-routing.module.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts index d235c2a3..376cc4fa 100644 --- a/src/app/pages/pages-routing.module.ts +++ b/src/app/pages/pages-routing.module.ts @@ -63,11 +63,11 @@ const routes: Routes = [{ loadChildren: () => import('./tables/tables.module') .then(m => m.TablesModule), }, - // { - // path: 'miscellaneous', - // loadChildren: () => import('./miscellaneous/miscellaneous.module') - // .then(m => m.MiscellaneousModule), - // }, + { + path: 'miscellaneous', + loadChildren: () => import('./miscellaneous/miscellaneous.module') + .then(m => m.MiscellaneousModule), + }, { path: '', redirectTo: 'dashboard',