We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdc858 commit e3eab70Copy full SHA for e3eab70
gui/pages/Weather.svelte
@@ -217,7 +217,7 @@
217
<div class="row">
218
<img
219
class="weather-icon col-3"
220
- src="{get_weather_icon(weatherData.current.weather.icon, weatherData.is_day)}"
+ src="{get_weather_icon(weatherData.current.weather.icon, $isDay)}"
221
alt="{weatherData.current.weather.description}"
222
title="{weatherData.current.weather.description}"
223
/>
@@ -253,7 +253,7 @@
253
</span>
254
255
class="weather-icon"
256
- src="{get_weather_icon(day.weather.icon, weatherData.is_day)}"
+ src="{get_weather_icon(day.weather.icon, $isDay)}"
257
alt="{day.weather.description}"
258
title="{day.weather.description}"
259
0 commit comments