diff --git a/modules/default/weather/forecast.njk b/modules/default/weather/forecast.njk
index 457301d5..cf806d62 100644
--- a/modules/default/weather/forecast.njk
+++ b/modules/default/weather/forecast.njk
@@ -14,17 +14,17 @@
{% endif %}
|
- {{ f.maxTemperature | roundValue | unit("temperature") }}
+ {{ f.maxTemperature | roundValue | unit("temperature") | decimalSymbol }}
|
- {{ f.minTemperature | roundValue | unit("temperature") }}
+ {{ f.minTemperature | roundValue | unit("temperature") | decimalSymbol }}
|
{% if config.showPrecipitationAmount %}
{% if f.precipitationUnits %}
{{ f.precipitation }}{{ f.precipitationUnits }}
|
- {% else %}
+ {% else %}
{{ f.precipitation | unit("precip") }}
|