summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/common
diff options
context:
space:
mode:
authorSwapnali Shadanan Pode <sp00501638@techmahindra.com>2019-02-20 13:18:58 +0530
committerSwapnali Shadanan Pode <sp00501638@techmahindra.com>2019-02-20 13:18:58 +0530
commit6189ee8d63cdd2d4d1b46c08400ed38ba0d0fe80 (patch)
treeacb7cb072eefcaa1643419e93909726c1145db23 /cds-ui/client/src/app/common
parentfa9bfa9fdc7e2a1afe09d6bca9106ec9651fb38e (diff)
Fixed error for search pipe
Change-Id: I21ac465e232d262e9e800a4efc0c400ba0a71ef6 Issue-ID: CCSDK-804 Signed-off-by: sp00501638 <sp00501638@techmahindra.com>
Diffstat (limited to 'cds-ui/client/src/app/common')
-rw-r--r--cds-ui/client/src/app/common/shared/shared.module.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/cds-ui/client/src/app/common/shared/shared.module.ts b/cds-ui/client/src/app/common/shared/shared.module.ts
index 4ee7cca87..8db020d52 100644
--- a/cds-ui/client/src/app/common/shared/shared.module.ts
+++ b/cds-ui/client/src/app/common/shared/shared.module.ts
@@ -25,16 +25,19 @@ import { HomeComponent } from './components/home/home.component';
import { CBAWizardComponent } from './components/cbawizard/cbawizard.component';
import { MatToolbarModule,MatIconModule, MatButtonModule, MatSidenavModule, MatListModule, MatGridListModule, MatCardModule, MatMenuModule, MatTableModule, MatPaginatorModule, MatSortModule, MatInputModule, MatSelectModule, MatRadioModule, MatFormFieldModule, MatStepperModule} from '@angular/material';
import { RouterModule } from "@angular/router";
+import { SearchPipe } from './pipes/search.pipe';
@NgModule({
declarations: [
HomeComponent,
- CBAWizardComponent
+ CBAWizardComponent,
+ SearchPipe
],
exports: [
HomeComponent,
- CBAWizardComponent
+ CBAWizardComponent,
+ SearchPipe
],
imports: [
CommonModule,