From 05f52f4488ac441f31b2857134542f9864595168 Mon Sep 17 00:00:00 2001 From: jz385p Date: Mon, 6 Apr 2020 15:31:10 +0530 Subject: [PATCH] Assign default user sort type issue is fixed User default sort type Issue-ID: PORTAL-862 Change-Id: Iaa82801e21aff4be7639ad014784561b5aa59e20 Signed-off-by: jz385p (cherry picked from commit 02def0f28e693bc8a241f2b294a5dd9a8969a2b8) --- .../dashboard-application-catalog.component.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/portal-FE-common/src/app/pages/dashboard-application-catalog/dashboard-application-catalog.component.ts b/portal-FE-common/src/app/pages/dashboard-application-catalog/dashboard-application-catalog.component.ts index ce373392..be4c09e2 100644 --- a/portal-FE-common/src/app/pages/dashboard-application-catalog/dashboard-application-catalog.component.ts +++ b/portal-FE-common/src/app/pages/dashboard-application-catalog/dashboard-application-catalog.component.ts @@ -119,16 +119,15 @@ export class DashboardApplicationCatalogComponent implements OnInit { } else { resJson.index = 3; - } - - + } + this.selectedSortType = this.sortOptions[resJson.index]; + //console.log(this.selectedSortType); + this.getAppCatalogService(data); } else { - resJson.index = 0; + this.sortTypeChanged('N'); } - this.selectedSortType = this.sortOptions[resJson.index]; - //console.log(this.selectedSortType); - this.getAppCatalogService(data); + }, error => { console.log('getUserAppsSortTypePreference Error Object' + error.message); -- 2.16.6