mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 21:53:50 +01:00
Fix scan analyze display (#539)
This commit is contained in:
parent
72a631d4ed
commit
8e4492685d
@ -106,19 +106,10 @@ export function TerminalRoot(): React.ReactElement {
|
||||
</Typography>
|
||||
)}
|
||||
{item instanceof Link && (
|
||||
<>
|
||||
<Typography>{item.dashes}> </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>
|
||||
</MuiLink>
|
||||
</>
|
||||
<Typography>
|
||||
{item.dashes + "> "}
|
||||
<MuiLink onClick={() => Terminal.connectToServer(item.hostname)}>{item.hostname}</MuiLink>
|
||||
</Typography>
|
||||
)}
|
||||
</ListItem>
|
||||
))}
|
||||
|
Loading…
Reference in New Issue
Block a user