diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-05-27 15:14:14 +0530 |
---|---|---|
committer | Arundathi Patil <arundpil@in.ibm.com> | 2019-05-27 15:14:37 +0530 |
commit | b0bda9b6310a84ce00a747926c78b04b66eac8ae (patch) | |
tree | 0fcde175cc5f0ccfe2673ec8efa130220c87a39c /cds-ui/client/src/app/common/shared/shared.module.ts | |
parent | 1f69e1c3569196305c23f085cfbc03bdba14f4e0 (diff) |
CCSDK-1308- Files sorting
Files are now sorted in ascending order
Issue-ID: CCSDK-1308
Change-Id: I4143a132a946815363f1c80b6ab37b6590ee242c
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 | 8 |
1 files changed, 5 insertions, 3 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 6ca5b13a5..b036f5967 100644 --- a/cds-ui/client/src/app/common/shared/shared.module.ts +++ b/cds-ui/client/src/app/common/shared/shared.module.ts @@ -29,20 +29,22 @@ import { RouterModule } from "@angular/router"; 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'; @NgModule({ declarations: [ HomeComponent, CBAWizardComponent, SearchPipe, - SearchDialog - + SearchDialog, + SortPipe ], exports: [ HomeComponent, CBAWizardComponent, SearchPipe, - SearchDialog + SearchDialog, + SortPipe ], imports: [ AppMaterialModule, |