diff --git a/modules/dashboard/performance/HeroCard.qml b/modules/dashboard/performance/HeroCard.qml index 9634516d..866c6c49 100644 --- a/modules/dashboard/performance/HeroCard.qml +++ b/modules/dashboard/performance/HeroCard.qml @@ -93,7 +93,7 @@ StyledRect { } StyledText { - text: Math.round(root.temperature) + (GlobalConfig.services.useFahrenheitPerformance ? "°F" : "°C") + text: `${Math.ceil(GlobalConfig.services.useFahrenheitPerformance ? root.temperature * 1.8 + 32 : root.temperature)}°${GlobalConfig.services.useFahrenheitPerformance ? "F" : "C"}` font: Tokens.font.body.builders.medium.build() } }