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
When numberOfDays === 7, dates are shifted causing an incorrect date onGridClick. See this from the example/ app:
numberOfDays === 7
onGridClick
example/
I pressed April 15, and onGridClick returned April 18; then I pressed April 13, onGridClick returned April 16. There is a shift of three days.
This is due to the initialDates in WeekView not pointing to the actual start of the pages.
initialDates
WeekView
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When
numberOfDays === 7
, dates are shifted causing an incorrect dateonGridClick
.See this from the
example/
app:I pressed April 15, and
onGridClick
returned April 18; then I pressed April 13,onGridClick
returned April 16. There is a shift of three days.This is due to the
initialDates
inWeekView
not pointing to the actual start of the pages.The text was updated successfully, but these errors were encountered: