We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
January 1, 2019 fell on a Tuesday
In the component this appears as Monday
The text was updated successfully, but these errors were encountered:
this can be fixed by changing startNextMonthDay on rangedate-picker.js for
if (this.startNextActiveMonth > 0) { return new Date(this.activeYearStart, this.startNextActiveMonth, 1).getDay() } else { return new Date(this.activeYearStart + 1, this.startNextActiveMonth, 1).getDay() }
I´ll send a PR
Sorry, something went wrong.
We fixed this by adjust all the Date.UTC(...) nonsense that is going on.
return new Date(Date.UTC(this.activeYearStart, this.startNextActiveMonth, 1)).getDay(); // fails
return new Date(this.activeYearStart, this.activeMonthStart, 1, 0, 0, 0).getDay(); // good
No branches or pull requests
Hello,
January 1, 2019 fell on a Tuesday
In the component this appears as Monday
The text was updated successfully, but these errors were encountered: