From 9a966f28097273cd8e76529ff8fc1a6a529802a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20H=C3=BCgin?= Date: Sat, 23 May 2020 12:18:26 +0200 Subject: [PATCH] Fix problems with tab-routing --- src/app/tabs/tabs-routing.module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/tabs/tabs-routing.module.ts b/src/app/tabs/tabs-routing.module.ts index 935d5dd..468f849 100644 --- a/src/app/tabs/tabs-routing.module.ts +++ b/src/app/tabs/tabs-routing.module.ts @@ -8,15 +8,15 @@ const routes: Routes = [ component: TabsPage, children: [ { - path: 'tab_search', + path: 'tab1', loadChildren: () => import('../tab1/tab1.module').then(m => m.Tab1PageModule) }, { - path: 'tab_map', + path: 'tab2', loadChildren: () => import('../tab2/tab2.module').then(m => m.Tab2PageModule) }, { - path: 'tab_chat', + path: 'tab3', loadChildren: () => import('../tab3/tab3.module').then(m => m.Tab3PageModule) }, {