diff --git a/src/adminApp/user.js b/src/adminApp/user.js index e350bf2cf..91d7bc079 100644 --- a/src/adminApp/user.js +++ b/src/adminApp/user.js @@ -171,11 +171,12 @@ const SubjectTypeSyncAttributeShow = ({ subjectType, syncConceptValueMap, ...pro const ConceptSyncAttributeShow = ({ subjectType, syncConceptValueMap, syncAttributeName, ...props }) => { const syncSettings = get(props.record, ["syncSettings", subjectType.name], {}); const conceptUUID = get(syncSettings, [syncAttributeName]); + const syncConceptName = subjectType[syncAttributeName].name; if (isEmpty(conceptUUID)) return null; return (
- {startCase(syncAttributeName)} + {startCase(syncConceptName)} {map(get(syncSettings, `${syncAttributeName}Values`, []), value => ( ))} diff --git a/src/formDesigner/components/Dashboard/CreateEditDashboard.js b/src/formDesigner/components/Dashboard/CreateEditDashboard.js index 820aba7ac..f54a5fe72 100644 --- a/src/formDesigner/components/Dashboard/CreateEditDashboard.js +++ b/src/formDesigner/components/Dashboard/CreateEditDashboard.js @@ -122,6 +122,7 @@ const CreateEditDashboard = ({ edit, history, operationalModules, getOperational {getErrorByKey(error, "EMPTY_NAME")}

{ return (

- +