The default format for the weather listing is all numeric, which results in ambiguous presentation of dates - is 6/11/2025 "Jun 11" or "6 Nov"?
|
"<div>" + date.toLocaleDateString() + "</div><br>" + |
Using the following parameters to toLocaleDateString: undefined, {month:"short", day:"numeric", year:"numeric"} will resolve this.
The default format for the weather listing is all numeric, which results in ambiguous presentation of dates - is 6/11/2025 "Jun 11" or "6 Nov"?
OpenSprinkler-App/www/js/modules/weather.js
Line 837 in 44261e7
Using the following parameters to toLocaleDateString:
undefined, {month:"short", day:"numeric", year:"numeric"}will resolve this.