commit | 885648993b3b2a9e7d36ebfeb96c196674c32e78 | [log] [tgz] |
---|---|---|
author | Muni Mohan Kunchi <munmohan@att.com> | Fri Jun 19 14:30:18 2020 -0400 |
committer | Muni Mohan Kunchi <munmohan@att.com> | Fri Jun 19 14:31:09 2020 -0400 |
tree | 208121e34ae35c28fa639f6b7f4daf5f8702dbda | |
parent | c2ebd5a44d02a2c7b38bda521b961f488e26bbfa [diff] |
fix for not displaying role sync button Issue-ID: PORTAL-909 Signed-off-by: Muni Mohan Kunchi <munmohan@att.com> Change-Id: If8cad2f0c5a1ca3a4188b3b7b83ff7a4f1cf752b
diff --git a/portal-FE-common/src/app/pages/role/role.component.ts b/portal-FE-common/src/app/pages/role/role.component.ts index 0ed3956..6cd14bd 100644 --- a/portal-FE-common/src/app/pages/role/role.component.ts +++ b/portal-FE-common/src/app/pages/role/role.component.ts
@@ -245,7 +245,7 @@ this.roleDataSource = new MatTableDataSource(this.availableRoles); this.applicationsService.getSingleAppInfoById(val).subscribe((res: any) => { this.appName = res.name; - if (res.centralAuth == true) { + if (res.rolesInAAF == true) { this.syncRolesApplied = true; } });