Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#991 | concept mappings displaying none only…
Browse files Browse the repository at this point in the history
… if no mappings or hierarchy
  • Loading branch information
snyaggarwal committed Oct 6, 2021
1 parent fc1c82d commit 5b76d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/concepts/HomeMappings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const HomeMappings = ({ source, concept, isLoadingMappings, childConcepts, paren
<div style={{textAlign: 'center', padding: '10px'}}>
<CircularProgress />
</div> : (
isEmpty(conceptMappings) ?
isEmpty(conceptMappings) && isEmpty(childConcepts) && isEmpty(parentConcepts) ?
None() :
<Table size="small" aria-label="concept-home-mappings" className='nested-mappings'>
<TableHead>
Expand Down

0 comments on commit 5b76d68

Please sign in to comment.