Merge branch 'main' into cloudflare

This commit is contained in:
hamster1963 2024-12-01 16:56:57 +08:00
commit 71212aaeaa
2 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -1,6 +1,6 @@
{ {
"name": "nezha-dash", "name": "nezha-dash",
"version": "1.6.1", "version": "1.6.1-fix",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 3040", "dev": "next dev -p 3040",