From 319bcb1cec66fe7e088d60ea10a1a0054a733dcd Mon Sep 17 00:00:00 2001 From: rmm Date: Tue, 4 Jul 2023 18:49:17 +0200 Subject: [PATCH] CPU temperatures shown w/o additional sorting. --- pve-mod-gui-temp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pve-mod-gui-temp.sh b/pve-mod-gui-temp.sh index 036ee77..feac517 100644 --- a/pve-mod-gui-temp.sh +++ b/pve-mod-gui-temp.sh @@ -216,7 +216,7 @@ function install_mod { const objValue = JSON.parse(value);\n\ if(objValue.hasOwnProperty(cpuAddress)) {\n\ const items = objValue[cpuAddress],\n\ - itemKeys = Object.keys(items).filter(item => { return String(item).startsWith(cpuItemPrefix); }).sort();\n\ + itemKeys = Object.keys(items).filter(item => { return String(item).startsWith(cpuItemPrefix); });\n\ let temps = [];\n\ itemKeys.forEach((coreKey, index) => {\n\ try {\n\