Fix decimalSymbol for forcast

This commit is contained in:
Kristjan SCHMIDT 2021-04-11 22:25:15 +02:00
parent f8769fcc2a
commit 5c2a0e5634
2 changed files with 3 additions and 2 deletions

View File

@ -25,6 +25,7 @@ _This release is scheduled to be released on 2021-04-01._
- Fix calendar start function logging inconsistency. - Fix calendar start function logging inconsistency.
- Fix updatenotification start function logging inconsistency. - Fix updatenotification start function logging inconsistency.
- Checks and applies the showDescription setting for the newsfeed module again - Checks and applies the showDescription setting for the newsfeed module again
- Fix decimalSymbol in the forcast part of the new weather module #2530
## [2.15.0] - 2021-04-01 ## [2.15.0] - 2021-04-01

View File

@ -14,10 +14,10 @@
{% endif %} {% endif %}
<td class="bright weather-icon"><span class="wi weathericon wi-{{ f.weatherType }}"></span></td> <td class="bright weather-icon"><span class="wi weathericon wi-{{ f.weatherType }}"></span></td>
<td class="align-right bright max-temp"> <td class="align-right bright max-temp">
{{ f.maxTemperature | roundValue | unit("temperature") }} {{ f.maxTemperature | roundValue | decimalSymbol | unit("temperature") }}
</td> </td>
<td class="align-right min-temp"> <td class="align-right min-temp">
{{ f.minTemperature | roundValue | unit("temperature") }} {{ f.minTemperature | roundValue | decimalSymbol | unit("temperature") }}
</td> </td>
{% if config.showPrecipitationAmount %} {% if config.showPrecipitationAmount %}
<td class="align-right bright precipitation"> <td class="align-right bright precipitation">