diff options
| author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-18 22:06:53 +0200 |
|---|---|---|
| committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-18 22:06:53 +0200 |
| commit | 6c0ba41002e53bd6b314d0cc961866acbbb07c9a (patch) | |
| tree | 3cbff0b4b7b7ae0cfba7d7187588cdfabf67f94d /frontend/src/app/app-routing.module.ts | |
| parent | fdfe2da8c1e71ec1dddeb81bc32356fb746c0c7f (diff) | |
Uradjeno da kad se klikne na ,,sacuvaj eksperiment,, redirektuje ga na stranicu za treniranje modela gde ce biti izabran taj eskperiment za dalji rad; Izmenjen ispis kod opcije za brisanje svih redova.
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
| -rw-r--r-- | frontend/src/app/app-routing.module.ts | 2 |
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 238668d9..a0952d21 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -19,8 +19,8 @@ const routes: Routes = [ { path: '', component: HomeComponent, data: { title: 'Početna strana' } }, /*{ path: 'add-model', component: AddModelComponent, data: { title: 'Dodaj model' } },*/ { path: 'experiment', component: ExperimentComponent, data: { title: 'Dodaj eksperiment' } }, - { path: 'training', component: TrainingComponent, data: { title: 'Treniraj model' } }, { path: 'training/:id', component: TrainingComponent, data: { title: 'Treniraj model' } }, + { path: 'training', component: TrainingComponent, data: { title: 'Treniraj model' } }, { path: 'my-datasets', component: MyDatasetsComponent, canActivate: [AuthGuardService], data: { title: 'Moji izvori podataka' } }, { path: 'my-models', component: MyModelsComponent, canActivate: [AuthGuardService], data: { title: 'Moji modeli' } }, { path: 'my-predictors', component: MyPredictorsComponent, canActivate: [AuthGuardService], data: { title: 'Moji trenirani modeli' } }, |
