-
{getWeatherIcon(current.weatherCode, current.isDay)}
-
{Math.round(current.temperature)}°
-
-
{getWeatherLabel(current.weatherCode)}
-
Gefuehlt {Math.round(current.feelsLike)}°
+
+
+
+ {Math.round(current.temperature)}°
+ {getWeatherIcon(current.weatherCode, current.isDay)}
+
+
+ {getWeatherLabel(current.weatherCode)}
+ {displayName()}
+ Gefühlt {Math.round(current.feelsLike)}°
+
+
- 💨
{Math.round(current.windSpeed)} km/h
- {windDirectionLabel(current.windDirection)}
+ Wind {windDirectionLabel(current.windDirection)}
- 💧
{current.humidity}%
Feuchtigkeit
- 🌡
{Math.round(current.pressure)} hPa
- Druck
+ Luftdruck
- ☀️
{current.uvIndex}
UV-Index
+
+
+ {#if lastUpdated()}
+
Aktualisiert {lastUpdated()}
+ {/if}
diff --git a/apps/mana/apps/web/src/lib/modules/wetter/components/LocationPicker.svelte b/apps/mana/apps/web/src/lib/modules/wetter/components/LocationPicker.svelte
index 0690fb3ac..68fb53808 100644
--- a/apps/mana/apps/web/src/lib/modules/wetter/components/LocationPicker.svelte
+++ b/apps/mana/apps/web/src/lib/modules/wetter/components/LocationPicker.svelte
@@ -1,6 +1,6 @@
-
-
+
+ {#if locations.length > 0}
+
+ {#each locations as loc (loc.id)}
+
+ {/each}
+
+ {/if}
+
+
+
+
+
{#if locations.length > 0}
-
- {#each locations as loc (loc.id)}
-
- {/each}
-
- {:else}
-
Keine Orte gespeichert
- {/if}
-
-
- {#if locations.length > 0}
-
- {/if}
-
+ {/if}
@@ -138,7 +136,7 @@
{/each}
@@ -208,7 +206,7 @@