Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#991 | concept mappings | showing only sourc…
Browse files Browse the repository at this point in the history
…e id
  • Loading branch information
snyaggarwal committed Oct 6, 2021
1 parent 930cdcb commit 333e282
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/concepts/ConceptHierarchyRow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const ConceptHierarchyRow = ({ mapType, concepts, source }) => {
{ concept.name }
</TableCell>
<TableCell align='left'>
{ `${source.owner} / ${source.id}` }
{source.id}
</TableCell>
<TableCell align='right' style={{width: '24px', paddingRight: '5px'}}>
</TableCell>
Expand Down
2 changes: 1 addition & 1 deletion src/components/mappings/ConceptHomeMappingsTableRows.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const ConceptHomeMappingsTableRows = ({ mapType, mappings, isIndirect }) => {
{ getConceptName(mapping, conceptCodeName) }
</TableCell>
<TableCell align='left'>
{ `${get(mapping, ownerAttr)} / ${get(mapping, sourceAttr)}` }
{get(mapping, sourceAttr)}
</TableCell>
<TableCell align='right' style={{width: '24px', paddingRight: '5px'}}>
<MappingOptions mapping={mapping} />
Expand Down

0 comments on commit 333e282

Please sign in to comment.