X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fdashboard%2FDashboardModule.ts;h=19aae287284248a5bf58a71d24429e3f1e880bed;hb=refs%2Fchanges%2F55%2F13955%2F1;hp=4d882e23690a4c93759a92a6674115b34934b878;hpb=3b4814aa2d3dec621dadb52f058ba95a3dc3a86a;p=osm%2FNG-UI.git diff --git a/src/app/dashboard/DashboardModule.ts b/src/app/dashboard/DashboardModule.ts index 4d882e2..19aae28 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 { NgChartsModule } 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, + NgChartsModule, RouterModule.forChild(routes), NgbModule, LoaderModule, SharedModule], declarations: [DashboardComponent] }) /** Exporting a class @exports DashboardModule */