Skip to content

Commit

Permalink
fix(detail): unknown text
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster1963 committed Dec 1, 2024
1 parent 7f4ae91 commit 2c4cf3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/(main)/ClientComponents/ServerDetailClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -222,7 +222,7 @@ export default function ServerDetailClient({
{" "}
{formatBytes(data.status.NetOutTransfer)}{" "}
</div>
) : null}
) : <div className="text-xs">Unknown</div>}
</section>
</CardContent>
</Card>
Expand All @@ -235,7 +235,7 @@ export default function ServerDetailClient({
{" "}
{formatBytes(data.status.NetInTransfer)}{" "}
</div>
) : null}
) : <div className="text-xs">Unknown</div>}
</section>
</CardContent>
</Card>
Expand Down

0 comments on commit 2c4cf3a

Please sign in to comment.