From 02def0f28e693bc8a241f2b294a5dd9a8969a2b8 Mon Sep 17 00:00:00 2001
From: jz385p <jegadeesh.babu@att.com>
Date: Mon, 6 Apr 2020 15:31:10 +0530
Subject: Assign default user sort type issue is fixed

User default sort type

Issue-ID: PORTAL-862
Change-Id: Iaa82801e21aff4be7639ad014784561b5aa59e20
Signed-off-by: jz385p <jegadeesh.babu@att.com>
---
 .../dashboard-application-catalog.component.ts              | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

(limited to 'portal-FE-common/src/app')

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);
-- 
cgit