You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Timepicker assumes that a day consists of 24 hours. But in reality a day is in the range from 23 to 25 hours,
due to daylight saving time (DST) changes in some time zones (e.g. Europe/Amsterdam in 2023).
That behavior causes bugs when special dates (corresponding to DST changes) are selected.
Steps to reproduce
Set your time zone to Europe/Amsterdam
Select 2023-10-29 in datepicker.
This is how this day should look like:
This is what we get with react-datepicker:
Duplicated highlight
Missing hour
Timepicker properly renders repeating hour but both hours are considered the same that confuses selection and no matter which one was clicked only the first one will be selected
as we render only 24 hours and 2AM happens twice the last hour of the day is missing and it is impossible to select it
The text was updated successfully, but these errors were encountered:
Bug description
Timepicker assumes that a day consists of 24 hours. But in reality a day is in the range from 23 to 25 hours,
due to daylight saving time (DST) changes in some time zones (e.g. Europe/Amsterdam in 2023).
That behavior causes bugs when special dates (corresponding to DST changes) are selected.
Steps to reproduce
Europe/Amsterdam
2023-10-29
in datepicker.This is how this day should look like:
This is what we get with react-datepicker:
The text was updated successfully, but these errors were encountered: