From 10ade1d32f14e1e0ea0b9e35e9eb471315709313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Sat, 18 Apr 2026 02:18:46 -0400 Subject: [PATCH] Fix: Swap `cputemp` and `disk` resources in glances loading state skeleton (#6577) --- src/components/widgets/glances/glances.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/widgets/glances/glances.jsx b/src/components/widgets/glances/glances.jsx index 7b1e27a57..567a73de1 100644 --- a/src/components/widgets/glances/glances.jsx +++ b/src/components/widgets/glances/glances.jsx @@ -38,7 +38,6 @@ export default function Widget({ options }) { {options.cpu !== false && } {options.mem !== false && } - {options.cputemp && } {options.disk && !Array.isArray(options.disk) && ( )} @@ -47,6 +46,7 @@ export default function Widget({ options }) { options.disk.map((disk) => ( ))} + {options.cputemp && } {options.uptime && } {options.label && }