0

Strange bug. Format 'DD/MM/yyyy HH:mm' shows 27/10/2021 00:00, but 'HH:mm' shows 21:47 (right time) Do you know what can be the issue?

<DateTimePicker
  name={"publishDate"}
  allowKeyboardControl
  ampm={false}
  clearable
  autoOk
  label={<IntlMessages id="form.publishDate" />}
  format="DD/MM/yyyy HH:mm"
  clearable={false}
  cancelLabel={
    <span>
      <IntlMessages id={"form.chancel"} />
    </span>
  }
  maxDate={Date.now() + 2629800000}
  disablePast
  minDate={Date.now() + 54000}
  onChange={(value) => {
    console.log("setting value to", value);
    setFieldValue("publishDate", value);
  }}
  value={publishDate}
  animateYearScrolling={false}
/>;

UPDATE Via yarn, it is working correct, via npm doesn't work

Olivier Tassinari
  • 8,238
  • 4
  • 23
  • 23
Mediator
  • 14,951
  • 35
  • 113
  • 191

0 Answers0