fix: update sort type from 'stg' to 'disk' for accurate sorting in server context

This commit is contained in:
hamster1963
2025-04-25 10:26:27 +08:00
parent bc88a53170
commit 963765343b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ export default function Servers() {
case "mem":
comparison = (a.state?.mem_used ?? 0) - (b.state?.mem_used ?? 0)
break
case "stg":
case "disk":
comparison = (a.state?.disk_used ?? 0) - (b.state?.disk_used ?? 0)
break
case "up":