-
-
Notifications
You must be signed in to change notification settings - Fork 299
Open
Description
Description:
When you set a minDate
value, you cannot actually select that date.
To Reproduce:
- Set the
minDate
value tonew Date()
(today):
<DatePickerInput
inline
autoOk
defaultValue={null}
locales="en-US"
id="inline-date-picker-start"
label={`Start time ${!startDate ? ' ...' : ''}`}
animateInline={false}
minDate={new Date()}
value={startDate}
onChange={(v, d) => setStartDate(d)}
pickerFooterClassName="hidden-footer"
/>
- Open the DatePicker and try to select
today
.
Expected behavior:
Should be able to select the minDate
value.
Desktop:
- OS: [macOS Big Sur 11.0 Beta]
- Browser [Chrome]
- Version [85.0.4183.102 (Official Build) (64-bit)]