mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
Fix decimalSymbol for forcast
This commit is contained in:
parent
f8769fcc2a
commit
5c2a0e5634
@ -25,6 +25,7 @@ _This release is scheduled to be released on 2021-04-01._
|
||||
- Fix calendar start function logging inconsistency.
|
||||
- Fix updatenotification start function logging inconsistency.
|
||||
- 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
|
||||
|
||||
|
@ -14,10 +14,10 @@
|
||||
{% endif %}
|
||||
<td class="bright weather-icon"><span class="wi weathericon wi-{{ f.weatherType }}"></span></td>
|
||||
<td class="align-right bright max-temp">
|
||||
{{ f.maxTemperature | roundValue | unit("temperature") }}
|
||||
{{ f.maxTemperature | roundValue | decimalSymbol | unit("temperature") }}
|
||||
</td>
|
||||
<td class="align-right min-temp">
|
||||
{{ f.minTemperature | roundValue | unit("temperature") }}
|
||||
{{ f.minTemperature | roundValue | decimalSymbol | unit("temperature") }}
|
||||
</td>
|
||||
{% if config.showPrecipitationAmount %}
|
||||
<td class="align-right bright precipitation">
|
||||
|
Loading…
x
Reference in New Issue
Block a user