diff --git a/src/app/pages/charts/charts.module.ts b/src/app/pages/charts/charts.module.ts index 8d0711ff..32b4fd99 100644 --- a/src/app/pages/charts/charts.module.ts +++ b/src/app/pages/charts/charts.module.ts @@ -2,6 +2,7 @@ import { NgModule } from '@angular/core'; import { NgxEchartsModule } from 'ngx-echarts'; import { NgxChartsModule } from '@swimlane/ngx-charts'; import { ChartModule } from 'angular2-chartjs'; +import { NbCardModule } from '@nebular/theme'; import { ThemeModule } from '../../@theme/theme.module'; @@ -49,7 +50,14 @@ const components = [ ]; @NgModule({ - imports: [ThemeModule, ChartsRoutingModule, NgxEchartsModule, NgxChartsModule, ChartModule], + imports: [ + ThemeModule, + ChartsRoutingModule, + NgxEchartsModule, + NgxChartsModule, + ChartModule, + NbCardModule, + ], declarations: [...routedComponents, ...components], }) export class ChartsModule {}