From 35d8560b19e46dccae3458db5105af842826abe9 Mon Sep 17 00:00:00 2001 From: Ezhilarasi Date: Fri, 16 Aug 2019 17:21:23 +0530 Subject: Edit option service Update edit option fromsearch db to service and update metadata Change-Id: Ic873ea0daa56bc083005ec84e9ffa04542b26f20 Issue-ID: CCSDK-1275 Signed-off-by: Ezhilarasi --- .../select-template/search-template/search-template.module.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.module.ts') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.module.ts index 11029663b..9bafaebdc 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.module.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.module.ts @@ -26,6 +26,8 @@ import { SearchTemplateComponent } from './search-template.component'; import { ReactiveFormsModule } from '@angular/forms'; import { AppMaterialModule } from 'src/app/common/modules/app-material.module'; import { SharedModule} from 'src/app/common/shared/shared.module'; +import { SelectTemplateService } from 'src/app/feature-modules/blueprint/select-template/select-template.service'; + @NgModule({ declarations: [ SearchTemplateComponent, @@ -39,6 +41,7 @@ import { SharedModule} from 'src/app/common/shared/shared.module'; exports:[ SearchTemplateComponent, SearchFromDatabaseComponent - ] + ], + providers:[ SelectTemplateService] }) export class SearchTemplateModule { } -- cgit 1.2.3-korg