diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-06-21 16:20:00 +0530 |
---|---|---|
committer | Arundathi Patil <arundpil@in.ibm.com> | 2019-06-21 16:20:13 +0530 |
commit | 3bc6917ecd7c3fb22c8a65d5279179fc2bb4d6aa (patch) | |
tree | 701568eb26e38dcc77bcc98da16296f3af0d53f0 /cds-ui/client/src/app/common/shared/shared.module.ts | |
parent | da79303b367ed5d4f12a279a401dee379f38147e (diff) |
Replace windows alert with Notification component
Removed windows.alert across files and replaced it with notification
component
Issue-ID: CCSDK-1381
Change-Id: If521c92544a1639b2fafb07163163844817c1c7a
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/common/shared/shared.module.ts')
-rw-r--r-- | cds-ui/client/src/app/common/shared/shared.module.ts | 9 |
1 files changed, 7 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 b036f5967..39e4e433f 100644 --- a/cds-ui/client/src/app/common/shared/shared.module.ts +++ b/cds-ui/client/src/app/common/shared/shared.module.ts @@ -30,6 +30,8 @@ import { SearchPipe } from './pipes/search.pipe'; import { SearchDialog } from './components/search-dialog/search-dialog.component'; import { AppMaterialModule } from '../modules/app-material.module'; import { SortPipe } from './pipes/sort.pipe'; +import { NotificationComponent } from './components/notification/notification.component'; +import { NotificationService } from './components/notification/notification.service'; @NgModule({ declarations: [ @@ -37,14 +39,16 @@ import { SortPipe } from './pipes/sort.pipe'; CBAWizardComponent, SearchPipe, SearchDialog, - SortPipe + SortPipe, + NotificationComponent ], exports: [ HomeComponent, CBAWizardComponent, SearchPipe, SearchDialog, - SortPipe + SortPipe, + NotificationComponent ], imports: [ AppMaterialModule, @@ -68,6 +72,7 @@ import { SortPipe } from './pipes/sort.pipe'; MatStepperModule, RouterModule ], + providers: [NotificationService], entryComponents: [SearchDialog] }) export class SharedModule { }
\ No newline at end of file |