Skip to content

Commit

Permalink
pointer for peer row
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Oct 26, 2023
1 parent 02506ab commit 9bad2ab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/app/peers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ function PeerRow({ peer }: { peer: Peer }) {
<Checkbox />
</TableCell>
<TableCell variant='extended'>
<Label as={Link} href={`/peers/${peer.name}`}>
<Label
as={Link}
style={{ cursor: 'pointer' }}
href={`/peers/${peer.name}`}
>
{peer.name}
</Label>
</TableCell>
Expand Down

0 comments on commit 9bad2ab

Please sign in to comment.