Skip to content

Commit

Permalink
Add the full market links
Browse files Browse the repository at this point in the history
Closes #214
  • Loading branch information
brianlove committed Feb 12, 2024
1 parent 2010b6c commit 94be1a9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web/gui-v2/src/components/DetailViewMoreMetadataDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ const MoreMetadataDialog = ({
{ title: 'In S&P 500?', value: data.groups.sp500 ? 'Yes' : 'No' },
{ title: 'In Fortune Global 500?', value: data.groups.global500 ? 'Yes' : 'No' },
{ title: 'Stage', value: data.stage },
{ title: 'Full market links', value: 'TODO - data are currently in an `__html` object' },
{
title: 'Full market links',
value: <div css={styles.linkWrapper}>
{data.market_full.map(e => <ExternalLink href={e.url}>{e.text}</ExternalLink>)}
</div>
},
];

const handleClose = () => {
Expand Down

0 comments on commit 94be1a9

Please sign in to comment.