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.Load1} / {data.status.Load5} /{" "}
|
||||||
{data.status.Load15}
|
{data.status.Load15}
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : <div className="text-xs">Unknown</div>}
|
||||||
</section>
|
</section>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
@ -222,7 +222,7 @@ export default function ServerDetailClient({
|
|||||||
{" "}
|
{" "}
|
||||||
{formatBytes(data.status.NetOutTransfer)}{" "}
|
{formatBytes(data.status.NetOutTransfer)}{" "}
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : <div className="text-xs">Unknown</div>}
|
||||||
</section>
|
</section>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
@ -235,7 +235,7 @@ export default function ServerDetailClient({
|
|||||||
{" "}
|
{" "}
|
||||||
{formatBytes(data.status.NetInTransfer)}{" "}
|
{formatBytes(data.status.NetInTransfer)}{" "}
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : <div className="text-xs">Unknown</div>}
|
||||||
</section>
|
</section>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
Loading…
Reference in New Issue
Block a user