react-dates version
e.g. [email protected]
Describe the bug
A clear and concise description of what the bug is.
Source code (including props configuration)
Steps to reproduce the behavior:
<DateRangePicker
startDate={this.state.startDate}
startDateId="your_unique_start_date_id"
endDate={this.state.endDate}
endDateId="your_unique_end_date_id"
onDatesChange={({ startDate, endDate }) => this.setState({ startDate, endDate })}
focusedInput={this.state.focusedInput}
onFocusChange={focusedInput => this.setState({ focusedInput })}
/>
@HadeerFawzy just made PR that should fix it. You can use transitionDuration={0} for a while
Thanks,transitionDuration={0} works. Would be great to get the fix merged soon though.
Yes I need this to get merged ASAP
This issue is closed and apparently resolved but our team recently experienced the same bug inside a wkwebview. The transitionDuration={0} patched the issue
@duran91 the PR is merged, but the fix has not yet been released.
Most helpful comment
@HadeerFawzy just made PR that should fix it. You can use
transitionDuration={0}for a while