mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-20 05:05:47 +01:00
commit
b139d689a5
@ -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', "&:hover": { textDecoration: 'none'} }}>{item.hostname}</Typography>
|
||||||
</MuiLink>
|
</MuiLink>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
@ -624,7 +624,7 @@ export function InteractiveTutorialRoot(): React.ReactElement {
|
|||||||
<ArrowBackIos />
|
<ArrowBackIos />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
)}
|
)}
|
||||||
{content.canNext && (
|
{(content.canNext || ITutorial.stepIsDone[step]) && (
|
||||||
<IconButton onClick={iTutorialNextStep} aria-label="next">
|
<IconButton onClick={iTutorialNextStep} aria-label="next">
|
||||||
<ArrowForwardIos />
|
<ArrowForwardIos />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
Loading…
Reference in New Issue
Block a user