Because of the way the onChange event handler is implemented, the field is not editable anymore (with the keyboard). This is because the state is updated only if the current input is a "valid" date. So anything partial does not qualify. Deleting the entry with a keyboard (either by pressing the backspace, or by selecting the whole thing and pressing delete) does not work for the same reason.
Because of the way the
onChangeevent handler is implemented, the field is not editable anymore (with the keyboard). This is because the state is updated only if the current input is a "valid" date. So anything partial does not qualify. Deleting the entry with a keyboard (either by pressing the backspace, or by selecting the whole thing and pressing delete) does not work for the same reason.