aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorDanijel Anđelković <adanijel99@gmail.com>2022-06-03 21:22:14 +0200
committerDanijel Anđelković <adanijel99@gmail.com>2022-06-03 21:22:14 +0200
commit3f0e6c18174915ae245d30c93e6d9d8e15f31749 (patch)
tree1cfe8c117fb36c16080004069235bd1967e953a8 /frontend/src/app/app-routing.module.ts
parent71c87626ff13be56ef028e1011b75f65af9b9914 (diff)
Promenio naslov "arhiva" u "kolekcije". Popravio bug sa dodavanjem modela.
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r--frontend/src/app/app-routing.module.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts
index d5552ce9..507089a8 100644
--- a/frontend/src/app/app-routing.module.ts
+++ b/frontend/src/app/app-routing.module.ts
@@ -15,7 +15,7 @@ const routes: Routes = [
{ path: 'experiment/p/:predictorId', component: ExperimentComponent, data: { title: 'Eksperiment' } },
{ path: 'experiment/:id', component: ExperimentComponent, data: { title: 'Eksperiment' } },
{ path: 'experiment', component: ExperimentComponent, data: { title: 'Eksperiment' } },
- { path: 'archive', component: ArchiveComponent, data: { title: 'Arhiva' } },
+ { path: 'archive', component: ArchiveComponent, data: { title: 'Kolekcije' } },
{ path: 'profile', component: ProfileComponent, canActivate: [AuthGuardService], data: { title: 'Profil' } },
{ path: 'playground', component: PlaygroundComponent, data: { title: 'Zabava' } },
{ path: 'test', component: TestComponent, data: { title: 'Test' } },