praveenpuglia / vuetify-daterange-picker

The missing date range picker for Vuetify JS you have been looking for.
https://vuetify-daterange-picker.gitbook.io/docs
MIT License
197 stars 59 forks source link

replaced new Date with date-fns.parse to fix timezone issues #36

Closed StewM closed 5 years ago

StewM commented 5 years ago

new Date interprets ISO format dates(YYYY-MM-DD) as UTC dates and then converts them to local time. This causes all sorts of problems. I pulled in the parse function from date-fns and used that instead which has the desired result of the date passed in the local timezone.

praveenpuglia commented 5 years ago

Thanks so much for this!