Skip to content

Commit

Permalink
FHIR Components | react updates
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Oct 26, 2021
1 parent 17d21bb commit 481a694
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/fhir/ContainerHomeHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const ContainerHomeHeader = ({source, url, parentURL, resource, serverURL, isHAP
<span style={{marginLeft: '15px'}}>
<ButtonGroup variant='text' size='large'>
<Tooltip arrow title="Copy URL">
<Button onClick={onCopyClick}>
<Button onClick={onCopyClick} color='secondary'>
<CopyIcon fontSize="inherit" />
</Button>
</Tooltip>
Expand Down
4 changes: 2 additions & 2 deletions src/components/search/ResultsTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const getTag = (tag, item, hapi) => {
);

return (
<React.Fragment>
<React.Fragment key={tag.id}>
{
tag.noTooltip ?
getTagDom() :
Expand Down Expand Up @@ -192,7 +192,7 @@ const FHIRHistoryTable = ({ versions, resource }) => {
map(versions, (version, index) => {
const versionLabel = getVersionLabel(version)
return (
<TableRow hover key={index}>
<TableRow hover key={versionLabel + '-' + index}>
{
isValueSet &&
<TableCell align='center'>
Expand Down

0 comments on commit 481a694

Please sign in to comment.