Skip to content

Commit

Permalink
fix: link to subnet
Browse files Browse the repository at this point in the history
  • Loading branch information
TopETH committed Nov 30, 2023
1 parent 1f72f2a commit eb03092
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/subnets/SubnetsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ function SubnetsTable(props: SubnetsTableProps) {
/>
<SubnetsTableAttribute
label="Name"
render={(subnet) => <>{subnet.name}</>}
render={(subnet) =>
<Link to={`https://taostats.io/subnets/netuid-${subnet.netUid}`}>
{subnet.name}
</Link>
}
/>
<SubnetsTableAttribute
label="Created At (UTC)"
Expand Down

0 comments on commit eb03092

Please sign in to comment.