Fix scan analyze display (#539)

This commit is contained in:
Snarling 2023-05-27 19:30:06 -04:00 committed by omuretsu
parent 72a631d4ed
commit 8e4492685d

@ -106,19 +106,10 @@ export function TerminalRoot(): React.ReactElement {
</Typography>
)}
{item instanceof Link && (
<>
<Typography>{item.dashes}&gt;&nbsp;</Typography>
<MuiLink
classes={{ root: classes.preformatted }}
color={"secondary"}
paragraph={false}
onClick={() => Terminal.connectToServer(item.hostname)}
>
<Typography sx={{ textDecoration: "underline", "&:hover": { textDecoration: "none" } }}>
{item.hostname}
<Typography>
{item.dashes + "> "}
<MuiLink onClick={() => Terminal.connectToServer(item.hostname)}>{item.hostname}</MuiLink>
</Typography>
</MuiLink>
</>
)}
</ListItem>
))}