Skip to content

Commit

Permalink
John conroy/fix dbgap link (#3181)
Browse files Browse the repository at this point in the history
* Fix dbgap link

* Add changelog

* Fix bulk data icon color (#3182)

Co-authored-by: John Conroy <[email protected]>

---------

Co-authored-by: John Conroy <[email protected]>
  • Loading branch information
john-conroy and john-conroy authored Jul 17, 2023
1 parent 5ad5a31 commit 62a78a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-fix-dbgap-link.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix dbGaP study link in bulk data transfer section.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function BulkDataTransferPanel({ title, status, tooltip, children, addOns }) {
{title}
{status ? statusIcons[status] : null}
<SecondaryBackgroundTooltip title={tooltip}>
<InfoIcon fontSize="small" />
<InfoIcon fontSize="small" color="primary" />
</SecondaryBackgroundTooltip>
</Header>
<ContentText variant="body2">{children}</ContentText>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function BulkDataTransferPanels() {
{panelsToUse.links.length > 0 && (
<Paper>
{panelsToUse.links.map((link) =>
React.isValidElement(link) ? link : <Link {...link} key={link.key} url={linkTitleUrlMap[link.title]} />,
React.isValidElement(link) ? link : <Link {...link} key={link.key} url={linkTitleUrlMap[link.key]} />,
)}
</Paper>
)}
Expand Down

0 comments on commit 62a78a5

Please sign in to comment.