summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjz385p <jegadeesh.babu@att.com>2020-04-02 15:33:12 +0530
committerSunder Tattavarada <statta@research.att.com>2020-04-02 17:55:25 +0000
commitae737cbbbe7c602e46a6093db9ae924900e603e5 (patch)
tree725806eeab02f1657b1ca5a557c2e420907e0106
parentc97140ca11335db9b856c44044c9f5a07f74145a (diff)
Set default value for first time user
Default user for first time user Issue-ID: PORTAL-862 Change-Id: I671ffb2574d4fc05602f218aa625248d35e666f4 Signed-off-by: jz385p <jegadeesh.babu@att.com>
-rw-r--r--portal-FE-common/src/app/pages/dashboard-application-catalog/dashboard-application-catalog.component.ts17
1 files changed, 14 insertions, 3 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 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;