ElemeFE / element-react

Element UI
https://elemefe.github.io/element-react/index
MIT License
2.83k stars 443 forks source link

Date picker format issues #1005

Open AshwinTayson opened 5 years ago

AshwinTayson commented 5 years ago

Description

If I try to give format prop in the date picker component, the month name gets converted to chinese character.

Reproduce Steps

  1. format="dd-MMM-yy" should give 12-Aug-19 but instead it gives 12-八月-19
  2. format="dd-MMMM-yyyy" should give 12-August-2019 but instead it gives 12-8 月-19

Exact code I'm using

<DateRangePicker
      value={[promotion.startDate, promotion.endDate]}
      placeholder="Start date - End date"
      format="dd-MMM-yy" />