Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1013 | concept details | mapping actions st…
Browse files Browse the repository at this point in the history
…yles
  • Loading branch information
snyaggarwal committed Oct 4, 2021
1 parent 2d7aa0d commit 998e332
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/concepts/HomeMappings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const HomeMappings = ({ concept, isLoadingMappings }) => {
<TableCell align='left' style={tbHeadCellStyles}><b>Code</b></TableCell>
<TableCell align='left' style={tbHeadCellStyles}><b>Name</b></TableCell>
<TableCell align='left' style={tbHeadCellStyles}><b>Source</b></TableCell>
<TableCell align='left' />
<TableCell align='right' />
</TableRow>
</TableHead>
<TableBody>
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 @@ -81,7 +81,7 @@ const ConceptHomeMappingsTableRows = ({ mapType, mappings, isIndirect }) => {
<TableCell align='left'>
{ `${get(mapping, ownerAttr)} / ${get(mapping, sourceAttr)}` }
</TableCell>
<TableCell align='left'>
<TableCell align='right' style={{width: '24px', paddingRight: '5px'}}>
<MappingOptions mapping={mapping} />
</TableCell>
</TableRow>
Expand Down
2 changes: 1 addition & 1 deletion src/components/mappings/MappingOptions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const MappingOptions = ({ mapping }) => {

return (
<React.Fragment>
<IconButton color='primary' ref={anchorRef} onClick={onMenuToogle}>
<IconButton size='small' color='primary' ref={anchorRef} onClick={onMenuToogle}>
<MenuIcon fontSize='inherit' />
</IconButton>
<Menu open={open} anchorEl={anchorRef.current} onClose={onMenuToogle}>
Expand Down

0 comments on commit 998e332

Please sign in to comment.