Skip to content

Commit

Permalink
Make nav links work
Browse files Browse the repository at this point in the history
  • Loading branch information
john681611 committed Nov 1, 2023
1 parent 48cf909 commit edd0a47
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions application/frontend/src/pages/Explorer/explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ export const Explorer = () => {
</div>
<div id="graphs">
graphs (3D):
<a target="_blank" href="visuals/force-graph-3d-all.html">
<a target="_blank" href="explorer/force_graph">
CRE dependencies
</a>{' '}
-
<a target="_blank" href="visuals/force-graph-3d-contains.html">
{/* <a target="_blank" href="visuals/force-graph-3d-contains.html">
hierarchy only
</a>{' '}
-
Expand All @@ -226,8 +226,8 @@ export const Explorer = () => {
<a target="_blank" href="visuals/force-graph-3d-linked.html">
links to external standards
</a>{' '}
|
<a target="_blank" href="visuals/circles.html">
| */}
<a target="_blank" href="explorer/circles">
zoomable circles
</a>
</div>
Expand Down
4 changes: 4 additions & 0 deletions application/frontend/src/scaffolding/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ const getLinks = (): { to: string; name: string }[] => [
to: `/`,
name: 'Open CRE',
},
{
to: `/explorer`,
name: 'Explorer',
},
];

export const Header = () => {
Expand Down

0 comments on commit edd0a47

Please sign in to comment.