From b700c3645d66529bfcbbd436c685cb6406e3e90b Mon Sep 17 00:00:00 2001 From: Sergey Andrievskiy Date: Thu, 20 Jun 2019 13:50:46 +0300 Subject: [PATCH] fix(tables): import card module --- src/app/pages/tables/tables.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/pages/tables/tables.module.ts b/src/app/pages/tables/tables.module.ts index 335a0015..5ee3ae10 100644 --- a/src/app/pages/tables/tables.module.ts +++ b/src/app/pages/tables/tables.module.ts @@ -1,4 +1,5 @@ import { NgModule } from '@angular/core'; +import { NbCardModule } from '@nebular/theme'; import { Ng2SmartTableModule } from 'ng2-smart-table'; import { ThemeModule } from '../../@theme/theme.module'; @@ -6,6 +7,7 @@ import { TablesRoutingModule, routedComponents } from './tables-routing.module'; @NgModule({ imports: [ + NbCardModule, ThemeModule, TablesRoutingModule, Ng2SmartTableModule,