mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
Fix glances cpu temp detection & fahrenheit conversion
This commit is contained in:
@@ -6,7 +6,7 @@ import { useTranslation } from "next-i18next";
|
||||
import UsageBar from "./usage-bar";
|
||||
|
||||
function convertToFahrenheit(t) {
|
||||
return t * 5/9 + 32
|
||||
return t * 9/5 + 32
|
||||
}
|
||||
|
||||
export default function CpuTemp({ expanded, units }) {
|
||||
|
||||
Reference in New Issue
Block a user