From: jz385p Date: Mon, 6 Apr 2020 10:01:10 +0000 (+0530) Subject: Assign default user sort type issue is fixed X-Git-Tag: 3.2.0~3^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=portal.git;a=commitdiff_plain;h=05f52f4488ac441f31b2857134542f9864595168 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) --- 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);