Fixed: Typo in the Week Column Header example

This commit is contained in:
hugepants 2020-07-10 17:03:03 +01:00 committed by GitHub
parent 4856d57c0e
commit 91b2fe8dcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export const firstDayOfWeekOptions = [
export const weekColumnOptions = [ export const weekColumnOptions = [
{ key: 'ddd M/D', value: 'Tue 3/25' }, { key: 'ddd M/D', value: 'Tue 3/25' },
{ key: 'ddd MM/DD', value: 'Tue 03/25' }, { key: 'ddd MM/DD', value: 'Tue 03/25' },
{ key: 'ddd D/M', value: 'Tue 25/03' }, { key: 'ddd D/M', value: 'Tue 25/3' },
{ key: 'ddd DD/MM', value: 'Tue 25/03' } { key: 'ddd DD/MM', value: 'Tue 25/03' }
]; ];