mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
fix(detail): unknown text
This commit is contained in:
parent
7f4ae91204
commit
2c4cf3aebe
@ -209,7 +209,7 @@ export default function ServerDetailClient({
|
||||
{data.status.Load1} / {data.status.Load5} /{" "}
|
||||
{data.status.Load15}
|
||||
</div>
|
||||
) : null}
|
||||
) : <div className="text-xs">Unknown</div>}
|
||||
</section>
|
||||
</CardContent>
|
||||
</Card>
|
||||
@ -222,7 +222,7 @@ export default function ServerDetailClient({
|
||||
{" "}
|
||||
{formatBytes(data.status.NetOutTransfer)}{" "}
|
||||
</div>
|
||||
) : null}
|
||||
) : <div className="text-xs">Unknown</div>}
|
||||
</section>
|
||||
</CardContent>
|
||||
</Card>
|
||||
@ -235,7 +235,7 @@ export default function ServerDetailClient({
|
||||
{" "}
|
||||
{formatBytes(data.status.NetInTransfer)}{" "}
|
||||
</div>
|
||||
) : null}
|
||||
) : <div className="text-xs">Unknown</div>}
|
||||
</section>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
Loading…
Reference in New Issue
Block a user