From: jz385p Date: Thu, 2 Apr 2020 10:03:12 +0000 (+0530) Subject: Set default value for first time user X-Git-Tag: 3.2.0~8 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=portal.git;a=commitdiff_plain;h=ae737cbbbe7c602e46a6093db9ae924900e603e5 Set default value for first time user Default user for first time user Issue-ID: PORTAL-862 Change-Id: I671ffb2574d4fc05602f218aa625248d35e666f4 Signed-off-by: jz385p --- 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 baaa4c49..ce373392 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 @@ -121,10 +121,15 @@ export class DashboardApplicationCatalogComponent implements OnInit { } - this.selectedSortType = this.sortOptions[resJson.index]; - //console.log(this.selectedSortType); - this.getAppCatalogService(data); + } + else { + resJson.index = 0; + } + this.selectedSortType = this.sortOptions[resJson.index]; + //console.log(this.selectedSortType); + this.getAppCatalogService(data); + }, error => { console.log('getUserAppsSortTypePreference Error Object' + error.message); }); @@ -152,6 +157,12 @@ export class DashboardApplicationCatalogComponent implements OnInit { getAppCatalogService(userAppSortTypePref: string) { //console.log("getAppCatalogServices called"); + if(!userAppSortTypePref) + { + userAppSortTypePref = "N"; + this.selectedSortType = this.sortOptions[0]; + //console.log("userAppSortTypePref"+userAppSortTypePref); + } this.applicationCatalogService.getAppsOrderBySortPref(userAppSortTypePref).subscribe(data => { //console.log("Response data" + data); this.appCatalogData = data;