mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 08:42:53 +02:00
DNET: Player feedback (#2545)
This commit is contained in:
committed by
GitHub
parent
73b7921ef0
commit
1b6b07faae
@@ -252,7 +252,7 @@ export function NetworkDisplayWrapper(): React.ReactElement {
|
||||
<Typography variant={"h5"} sx={{ fontWeight: "bold" }}>
|
||||
Dark Net
|
||||
</Typography>
|
||||
{instability && (
|
||||
{instability > 0 && (
|
||||
<Tooltip
|
||||
title={
|
||||
<>
|
||||
@@ -299,13 +299,13 @@ export function NetworkDisplayWrapper(): React.ReactElement {
|
||||
{DarknetState.Network.slice(0, netDisplayDepth).map((row) =>
|
||||
row.map(
|
||||
(server) =>
|
||||
server && (
|
||||
!!server && (
|
||||
<ServerStatusBox server={server} key={server.ip} enableAuth={allowAuth(server)} classes={classes} />
|
||||
),
|
||||
),
|
||||
)}
|
||||
|
||||
{labyrinth && netDisplayDepth > depth && (
|
||||
{!!labyrinth && netDisplayDepth > depth && (
|
||||
<ServerStatusBox server={labyrinth} enableAuth={allowAuth(labyrinth)} classes={classes} />
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user