X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fdashboard%2FDashboardModule.ts;h=82b27c0947f6c4e79f2839786360cbcbd6dc5efe;hb=4a7a542839c9ed7b6b6118c9faae0bc5d274494f;hp=4d882e23690a4c93759a92a6674115b34934b878;hpb=2e02e7d676dc5a87e2d68437f30b6e41037ea7a4;p=osm%2FNG-UI.git diff --git a/src/app/dashboard/DashboardModule.ts b/src/app/dashboard/DashboardModule.ts index 4d882e2..82b27c0 100644 --- a/src/app/dashboard/DashboardModule.ts +++ b/src/app/dashboard/DashboardModule.ts @@ -26,10 +26,12 @@ import { FlexLayoutModule } from '@angular/flex-layout'; import { FormsModule } from '@angular/forms'; import { RouterModule, Routes } from '@angular/router'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; +import { NgSelectModule } from '@ng-select/ng-select'; import { TranslateModule } from '@ngx-translate/core'; import { DashboardComponent } from 'DashboardComponent'; import { LoaderModule } from 'LoaderModule'; import { ChartsModule } from 'ng2-charts'; +import { SharedModule } from 'SharedModule'; /** To halndle project information */ const projectInfo: {} = { title: '{project}', url: '/' }; @@ -50,8 +52,8 @@ const routes: Routes = [ * @NgModule takes a metadata object that tells Angular how to compile and run module code. */ @NgModule({ - imports: [FormsModule, CommonModule, HttpClientModule, FlexLayoutModule, TranslateModule, - ChartsModule, RouterModule.forChild(routes), NgbModule, LoaderModule], + imports: [FormsModule, CommonModule, HttpClientModule, FlexLayoutModule, TranslateModule, NgSelectModule, + ChartsModule, RouterModule.forChild(routes), NgbModule, LoaderModule, SharedModule], declarations: [DashboardComponent] }) /** Exporting a class @exports DashboardModule */