diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-24 05:05:31 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-24 05:05:31 +0100 |
commit | 0aa45260963dbf0a52726f791c3813928a1bcebc (patch) | |
tree | e5f17f3a73768e0b5e1a2b7918d821651a20d8d4 /frontend/src/app/app.module.ts | |
parent | b200ec561202a95ad716ffe84fcb6a8fa61bc939 (diff) |
Izmenio ucitavanje dataseta na add-model stranici tako da se checkoboxovi i radio dugmad za odabir ulaznih i izlazne kolone ne ponavljaju.
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r-- | frontend/src/app/app.module.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 7f076421..3387de8c 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -33,6 +33,8 @@ import { BrowsePredictorsComponent } from './_pages/browse-predictors/browse-pre import { PredictComponent } from './_pages/predict/predict.component'; import { ScatterchartComponent } from './scatterchart/scatterchart.component'; import { BarchartComponent } from './barchart/barchart.component'; +import { NotificationsComponent } from './_elements/notifications/notifications.component'; +import { DatatableComponent } from './_elements/datatable/datatable.component'; @NgModule({ declarations: [ @@ -55,7 +57,9 @@ import { BarchartComponent } from './barchart/barchart.component'; BrowsePredictorsComponent, PredictComponent, ScatterchartComponent, - BarchartComponent + BarchartComponent, + NotificationsComponent, + DatatableComponent ], imports: [ BrowserModule, |