mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
Formatting correction for min/max display
This commit is contained in:
parent
c4fd4e0317
commit
1faefebe42
@ -14,17 +14,17 @@
|
|||||||
{% 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 | unit("temperature") | decimalSymbol }}
|
||||||
</td>
|
</td>
|
||||||
<td class="align-right min-temp">
|
<td class="align-right min-temp">
|
||||||
{{ f.minTemperature | roundValue | unit("temperature") }}
|
{{ f.minTemperature | roundValue | unit("temperature") | decimalSymbol }}
|
||||||
</td>
|
</td>
|
||||||
{% if config.showPrecipitationAmount %}
|
{% if config.showPrecipitationAmount %}
|
||||||
{% if f.precipitationUnits %}
|
{% if f.precipitationUnits %}
|
||||||
<td class="align-right bright precipitation">
|
<td class="align-right bright precipitation">
|
||||||
{{ f.precipitation }}{{ f.precipitationUnits }}
|
{{ f.precipitation }}{{ f.precipitationUnits }}
|
||||||
</td>
|
</td>
|
||||||
{% else %}
|
{% else %}
|
||||||
<td class="align-right bright precipitation">
|
<td class="align-right bright precipitation">
|
||||||
{{ f.precipitation | unit("precip") }}
|
{{ f.precipitation | unit("precip") }}
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user