From ee3dde8e43b94a2dec855cfd625aa4794422d2c3 Mon Sep 17 00:00:00 2001 From: Sergey Andrievskiy Date: Thu, 20 Jun 2019 13:35:48 +0300 Subject: [PATCH] fix(charts): import card module --- src/app/pages/charts/charts.module.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 {}