From 885648993b3b2a9e7d36ebfeb96c196674c32e78 Mon Sep 17 00:00:00 2001 From: Muni Mohan Kunchi Date: Fri, 19 Jun 2020 14:30:18 -0400 Subject: [PATCH] fix for not displaying role sync button Issue-ID: PORTAL-909 Signed-off-by: Muni Mohan Kunchi Change-Id: If8cad2f0c5a1ca3a4188b3b7b83ff7a4f1cf752b --- portal-FE-common/src/app/pages/role/role.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0ed39569..6cd14bd7 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 @@ export class RoleComponent implements OnInit { 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; } }); -- 2.16.6