diff options
| author | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-19 14:01:06 +0200 |
|---|---|---|
| committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-19 14:01:06 +0200 |
| commit | 84e02f0e7d895fe265be46e2f120076f92e3113f (patch) | |
| tree | 2bce11923b71d472eec6e792ac1641fc1fb455cf /frontend/src/app/app-routing.module.ts | |
| parent | 5dab3cad1e3f4d0c97525f77db90ca11cd8a4eb9 (diff) | |
Ispravljen bag kod steppera (nije se ucitavao 3. korak kad se udje na exp iz kolekcije) i bag za updatePieChart pri ucitavanju eskperiment strane.
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
| -rw-r--r-- | frontend/src/app/app-routing.module.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 8c60a666..56442842 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -18,7 +18,8 @@ const routes: Routes = [ { path: 'archive', component: ArchiveComponent, data: { title: 'Arhiva' } }, { path: 'profile', component: ProfileComponent, canActivate: [AuthGuardService], data: { title: 'Profil' } }, { path: 'playground', component: PlaygroundComponent, data: { title: 'Zabava' } }, - { path: 'test', component: TestComponent, data: { title: 'Test' } } + { path: 'test', component: TestComponent, data: { title: 'Test' } }, + { path: '**', redirectTo: '' } ]; @NgModule({ |
