- {/* Memory - Mobile: right column, Desktop: column 2 */}
+ {/* Memory - Desktop: column 2 with small bar */}
Memory
@@ -558,7 +558,7 @@ export function VirtualMachines() {
/>
- {/* Disk Usage - Mobile: left column (new row), Desktop: column 3 */}
+ {/* Disk Usage - Desktop: column 3 with small bar + Disk I/O below */}
Disk Usage
@@ -568,39 +568,45 @@ export function VirtualMachines() {
value={Number.parseFloat(diskPercent)}
className={`h-1.5 ${getProgressColor(Number.parseFloat(diskPercent))}`}
/>
-
-
- {/* Disk I/O - Mobile: right column (same row as Disk Usage), Desktop: column 3 (below Disk Usage bar) */}
-
-
Disk I/O
-
+
+
↓ {formatBytes(vm.diskread)}
+
↑ {formatBytes(vm.diskwrite)}
- {/* Network I/O - Mobile: full width (new row), Desktop: column 4 */}
-
-
Network I/O
-
+ {/* Disk I/O - Desktop: column 4 (separate column) */}
+
+
Disk I/O
+
- ↓ {formatBytes(vm.netin)}
+
+ ↓ {formatBytes(vm.diskread)}
- ↑ {formatBytes(vm.netout)}
+
+ ↑ {formatBytes(vm.diskwrite)}
- {/* Disk I/O for Desktop - shown below Disk Usage */}
-
-
-
↓ {formatBytes(vm.diskread)}
-
↑ {formatBytes(vm.diskwrite)}
+ {/* Network I/O - Mobile: right column (same row as Disk Usage), Desktop: column 5 */}
+
+
Network I/O
+
+
+
+ ↓ {formatBytes(vm.netin)}
+
+
+
+ ↑ {formatBytes(vm.netout)}
+