diff --git a/dist/weather-card.js b/dist/weather-card.js
index f1c342a1..9b8e7fad 100644
--- a/dist/weather-card.js
+++ b/dist/weather-card.js
@@ -293,7 +293,7 @@ class WeatherCard extends LitElement {
daily.precipitation !== null
? html`
- ${daily.precipitation} ${this.getUnit("precipitation")}
+ ${Math.round(daily.precipitation*10)/10} ${this.getUnit("precipitation")}
`
: ""}
@@ -302,7 +302,7 @@ class WeatherCard extends LitElement {
daily.precipitation_probability !== null
? html`
- ${daily.precipitation_probability} ${this.getUnit("precipitation_probability")}
+ ${Math.round(daily.precipitation_probability)} ${this.getUnit("precipitation_probability")}
`
: ""}