diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-24 13:23:30 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-24 13:23:30 +0100 |
commit | c1e0c2109c6647a8a64a05de908b50feacb767c3 (patch) | |
tree | eeb98805f7f1d2df809c7c84fdc4056c779d3471 /frontend/src/app/app-routing.module.ts | |
parent | 89ae00eed1dad9204a10691bc44121b8a7bb3988 (diff) |
Dataset-load component - dodati checkboxovi za public i accessibleByLink kod dataseta.
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r-- | frontend/src/app/app-routing.module.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index a52d66a8..1c368318 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -22,10 +22,9 @@ const routes: Routes = [ { path: 'my-predictors', component: MyPredictorsComponent, canActivate: [AuthGuardService], data: { title: 'Moji trenirani modeli' } }, { path: 'settings', component: SettingsComponent, canActivate: [AuthGuardService], data: { title: 'Podešavanja' } }, { path: 'profile', component: ProfileComponent, canActivate: [AuthGuardService], data: { title: 'Profil' } }, - { path: 'browse-datasets', component: BrowseDatasetsComponent, data: { title: 'Javni izvori podataka' } }, + { path: 'browse-datasets', component: FilterDatasetsComponent, data: { title: 'Javni izvori podataka' } }, { path: 'browse-predictors', component: BrowsePredictorsComponent, data: { title: 'Javni trenirani modeli' } }, - { path: 'predict', component: PredictComponent, data: { title: 'Predvidi vrednosti' } }, - { path: 'filter-datasets', component: FilterDatasetsComponent, data: { title: 'Filter datasets' } } + { path: 'predict', component: PredictComponent, data: { title: 'Predvidi vrednosti' } } ]; @NgModule({ |