mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 12:12:20 +00:00
Fixes issue #3345. I think I submitted this correctly, but don't do this often so let me know if anything needs to be corrected. --------- Co-authored-by: Veeck <github@veeck.de>
This commit is contained in:
parent
c5f90501ef
commit
d970214a0e
@ -33,6 +33,7 @@ _This release is scheduled to be released on 2024-04-01._
|
||||
- Worked around several issues in the RRULE library that were causing deleted calender events to still show, some
|
||||
initial and recurring events to not show, and some event times to be off an hour. (#3291)
|
||||
- Skip changelog requirement when running tests for dependency updates (#3320)
|
||||
- Display precipitation probability when it is 0% instead of blank/empty (#3345)
|
||||
- [newsfeed] Suppress unsightly animation cases when there are 0 or 1 active news items (#3336)
|
||||
- [newsfeed] Always compute the feed item URL using the same helper function (#3336)
|
||||
- Ignore all custom css files (#3359)
|
||||
|
@ -233,7 +233,7 @@ Module.register("weather", {
|
||||
}
|
||||
}
|
||||
} else if (type === "precip") {
|
||||
if (value === null || isNaN(value) || value === 0 || value.toFixed(2) === "0.00") {
|
||||
if (value === null || isNaN(value)) {
|
||||
formattedValue = "";
|
||||
} else {
|
||||
formattedValue = WeatherUtils.convertPrecipitationUnit(value, valueUnit, this.config.units);
|
||||
|
Loading…
x
Reference in New Issue
Block a user