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
See this CodeSandbox.
Basically, inner ranges works:
{ after: new Date(2017, 5, 20), before: new Date(2017, 5, 25), }
(select 5 days between the 20th and the 25th)
but if we switch to outer ranges it will not:
{ after: new Date(2017, 5, 25), before: new Date(2017, 5, 20), }
(it should select the days before the 20th and after the 25th)
As workaround:
[ { after: new Date(2017, 5, 25) }, { before: new Date(2017, 5, 20) } ]
The text was updated successfully, but these errors were encountered:
e22002f
No branches or pull requests
See this CodeSandbox.
Basically, inner ranges works:
(select 5 days between the 20th and the 25th)
but if we switch to outer ranges it will not:
(it should select the days before the 20th and after the 25th)
As workaround:
The text was updated successfully, but these errors were encountered: