Skip to content

Commit

Permalink
Fixed problem that was preventing navigation to related studies on st…
Browse files Browse the repository at this point in the history
…udy overview page
  • Loading branch information
MGS-sails committed Jan 30, 2024
1 parent 4b6d0dd commit 3f80a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Study/Overview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const StudyOverview: React.FC<StudyOverviewProps> = ({ data, included }) => {
<ul className="vf-list">
{data.relationships.studies.data.map(({ id }) => (
<li key={id as string}>
<Link to={`/studies/${id}`}>{id}</Link>
<a href={`/metagenomics/studies/${id}`}>{id}</a>
</li>
))}
</ul>
Expand Down

0 comments on commit 3f80a30

Please sign in to comment.