diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-10 01:07:14 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-10 01:07:14 +0100 |
commit | 8ed7debac7ba96babcbdee538f4db009afd6e340 (patch) | |
tree | 62c0be06050a02efcc3c686c2da165083b713ff5 /frontend/src/app/app.module.ts | |
parent | e5853148a7277f7c76153701671a7df022634150 (diff) | |
parent | edb151a0e7de2c48de3ba38a0ddaff198936bd29 (diff) |
Merge branch 'frontendAddModel' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
# Conflicts:
# frontend/src/app/app-routing.module.ts
# frontend/src/app/app.module.ts
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r-- | frontend/src/app/app.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 4f26046e..16bb7ce5 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -11,6 +11,7 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { OnlyAuthorizedComponent } from './_pages/only-authorized/only-authorized.component'; import { DatasetLoadComponent } from './_elements/dataset-load/dataset-load.component'; import { NgxCsvParser } from 'ngx-csv-parser'; +import { AddModelComponent } from './_pages/add-model/add-model.component'; @NgModule({ declarations: [ @@ -18,7 +19,8 @@ import { NgxCsvParser } from 'ngx-csv-parser'; LoginPageComponent, RegisterPageComponent, OnlyAuthorizedComponent, - DatasetLoadComponent + DatasetLoadComponent, + AddModelComponent ], imports: [ BrowserModule, |