From d3a3560de3a4337721008b0f2ee55bfa205b1d9c Mon Sep 17 00:00:00 2001 From: Sergey Andrievskiy Date: Thu, 20 Jun 2019 13:40:56 +0300 Subject: [PATCH] fix(editors): import card module --- src/app/pages/editors/editors.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/pages/editors/editors.module.ts b/src/app/pages/editors/editors.module.ts index 2fe4c433..a05493ec 100644 --- a/src/app/pages/editors/editors.module.ts +++ b/src/app/pages/editors/editors.module.ts @@ -1,4 +1,5 @@ import { NgModule } from '@angular/core'; +import { NbCardModule } from '@nebular/theme'; import { CKEditorModule } from 'ng2-ckeditor'; import { ThemeModule } from '../../@theme/theme.module'; @@ -7,6 +8,7 @@ import { EditorsRoutingModule, routedComponents } from './editors-routing.module @NgModule({ imports: [ + NbCardModule, ThemeModule, EditorsRoutingModule, CKEditorModule,