Months in short format

This commit is contained in:
Vesa Luusua 2017-12-22 13:15:15 +02:00
parent 506b7fe023
commit 7f7b79c60e
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ const defaultProps = {
// Internationalization props
// Multilocale support can be achieved with displayFormat like moment.localeData.longDateFormat('L')
// https://momentjs.com/
displayFormat: 'ddd, MMMM D',
displayFormat: 'ddd, MMM D',
monthFormat: 'MMMM YYYY',
weekDayFormat: 'dd',
phrases: {

View file

@ -175,7 +175,7 @@ export class BookingDatesFormComponent extends Component {
const dateFormatOptions = {
weekday: 'short',
month: 'long',
month: 'short',
day: 'numeric',
};