Skip to content

Commit

Permalink
tooltip fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinyooky committed Jul 13, 2023
1 parent f7d78a1 commit 5c9be6e
Showing 1 changed file with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ function GlobusLink({ uuid, isSupport }) {
return (
<DetailSectionPaper>
{isSupport && 'Support Dataset: '}
<SecondaryBackgroundTooltip title="Data generated for visualization of this dataset are also available on Globus.">
<FilesConditionalLink
href={responseUrl}
hasAgreedToDUA={hasAgreedToDUA}
openDUA={() => openDUA(responseUrl)}
variant="body2"
>
{isSupport ? '' : hubmap_id} Globus <StyledExternalLinkIcon />
</FilesConditionalLink>
</SecondaryBackgroundTooltip>
<FilesConditionalLink
href={responseUrl}
hasAgreedToDUA={hasAgreedToDUA}
openDUA={() => openDUA(responseUrl)}
variant="body2"
>
{isSupport ? '' : hubmap_id} Globus
<SecondaryBackgroundTooltip title="Data generated for visualization of this dataset are also available on Globus.">
<StyledExternalLinkIcon />
</SecondaryBackgroundTooltip>
</FilesConditionalLink>
</DetailSectionPaper>
);
}
Expand Down

0 comments on commit 5c9be6e

Please sign in to comment.