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
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch [email protected] for the project I'm working on.
[email protected]
I am changing the shownDate programatically and finding the shown calendar does not change.
I made the following changes to the code.
Here is the diff that solved my problem:
diff --git a/node_modules/react-date-range/dist/components/Calendar/index.js b/node_modules/react-date-range/dist/components/Calendar/index.js index 79a1396..1ea074a 100644 --- a/node_modules/react-date-range/dist/components/Calendar/index.js +++ b/node_modules/react-date-range/dist/components/Calendar/index.js @@ -581,6 +581,10 @@ var Calendar = /*#__PURE__*/function (_PureComponent) { }); } + if (prevProps.shownDate !== this.props.shownDate) { + this.changeShownDate(this.props.shownDate); + } + if (!(0, _shallowEqual.shallowEqualObjects)(prevProps.scroll, this.props.scroll)) { this.setState({ scrollArea: this.calcScrollArea(this.props)
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered:
Another way to do this:
Sorry, something went wrong.
No branches or pull requests
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
[email protected]
for the project I'm working on.I am changing the shownDate programatically and finding the shown calendar does not change.
I made the following changes to the code.
Here is the diff that solved my problem:
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered: