From 98be195a336425341a828ea44e78144f0c8fbd78 Mon Sep 17 00:00:00 2001 From: Ezhilarasi Date: Tue, 12 Mar 2019 16:18:20 +0530 Subject: Import Ace editor in Test module Change-Id: Ibb4cf1a0331071187b3ac34033d32fe55307791a Issue-ID: CCSDK-917 Signed-off-by: Ezhilarasi --- .../feature-modules/blueprint/test-template/test-template.module.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cds-ui/client/src/app/feature-modules/blueprint/test-template') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.module.ts index 677c6fedc..ea5b5ffb2 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.module.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.module.ts @@ -24,6 +24,7 @@ import { CommonModule } from '@angular/common'; import { TestTemplateComponent } from './test-template.component'; import { TestTemplateRoutingModule } from './test-template-routing.module'; import { AppMaterialModule } from '../../../common/modules/app-material.module'; +import { AceEditorModule } from 'ng2-ace-editor'; @NgModule({ declarations: [ @@ -35,7 +36,8 @@ import { AppMaterialModule } from '../../../common/modules/app-material.module'; imports: [ CommonModule, AppMaterialModule, - TestTemplateRoutingModule + TestTemplateRoutingModule, + AceEditorModule ] }) export class TestTemplateModule { } -- cgit 1.2.3-korg