From 05c077d0ca80267b6af36f0d9d264b02720c1c38 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Thu, 20 Jan 2022 20:04:41 +0000 Subject: [PATCH] PMCORE-3637 --- .../src/components/formAuthenticationSources.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue b/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue index 03b361b8e..45315dc41 100644 --- a/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue +++ b/workflow/engine/methods/authenticationSources/src/components/formAuthenticationSources.vue @@ -488,11 +488,11 @@ gridText: JSON.stringify(gridText), signInPolicyForLDAP: row.AUTH_SOURCE_SIGNIN_POLICY_FOR_LDAP, inactiveUsers: row.AUTH_SOURCE_RETIRED_OU, - role: row.USR_ROLE, - groupIdentifier: row.AUTH_SOURCE_IDENTIFIER_FOR_USER_GROUP, - userClassIdentifier: row.AUTH_SOURCE_IDENTIFIER_FOR_USER_CLASS, - groupClassIdentifier: row.GROUP_CLASS_IDENTIFIER, - departmentClassIdentifier: row.DEPARTMENT_CLASS_IDENTIFIER + role: row.USR_ROLE || "", + groupIdentifier: row.AUTH_SOURCE_IDENTIFIER_FOR_USER_GROUP || "", + userClassIdentifier: row.AUTH_SOURCE_IDENTIFIER_FOR_USER_CLASS || "", + groupClassIdentifier: row.GROUP_CLASS_IDENTIFIER || "", + departmentClassIdentifier: row.DEPARTMENT_CLASS_IDENTIFIER || "" }; return obj; },