Fixes #2795, adding better underlines for links

This commit is contained in:
G4mingJon4s 2022-09-13 20:09:58 +02:00
parent 015fb46703
commit c29b4cfda9

@ -125,7 +125,7 @@ export function TerminalRoot({ terminal, router, player }: IProps): React.ReactE
paragraph={false} paragraph={false}
onClick={() => terminal.connectToServer(player, item.hostname)} onClick={() => terminal.connectToServer(player, item.hostname)}
> >
<Typography>{item.hostname}</Typography> <Typography sx={{ textDecoration: 'underline' }}>{item.hostname}</Typography>
</MuiLink> </MuiLink>
</> </>
)} )}