Skip to content

Commit 26140a1

Browse files
authored
Update hourly.njk
1 parent e11a229 commit 26140a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/default/weather/hourly.njk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
</td>
2929
{% endif %}
3030
{% if config.showPrecipitationAmount %}
31-
{% if (!config.hideZeroes or hour.precipitationAmount>0) %}
31+
{% if (not config.hideZeroes or hour.precipitationAmount>0) %}
3232
<td class="align-right bright precipitation-amount">
3333
{{ hour.precipitationAmount | unit("precip", hour.precipitationUnits) }}
3434
</td>
3535
{% endif %}
3636
{% endif %}
3737
{% if config.showPrecipitationProbability %}
38-
{% if (!config.hideZeroes or hour.precipitationAmount>0) %}
38+
{% if (not config.hideZeroes or hour.precipitationAmount>0) %}
3939
<td class="align-right bright precipitation-prob">
4040
{{ hour.precipitationProbability | unit('precip', '%') }}
4141
</td>

0 commit comments

Comments
 (0)