Fix contact's birthday and anniversary date presentation.

master
Tom Hacohen 6 years ago
parent e0ec5ee6c8
commit 563f718597

@ -94,7 +94,7 @@ class Contact extends React.PureComponent {
leftIcon: <IconDate /> leftIcon: <IconDate />
}, },
undefined, undefined,
((x) => moment(x).format('dddd, LL')), ((x: any) => moment(x.toJSDate()).format('dddd, LL')),
() => 'Birthday', () => 'Birthday',
)); ));
@ -104,7 +104,7 @@ class Contact extends React.PureComponent {
leftIcon: <IconDate /> leftIcon: <IconDate />
}, },
undefined, undefined,
((x) => moment(x).format('dddd, LL')), ((x: any) => moment(x.toJSDate()).format('dddd, LL')),
() => 'Anniversary', () => 'Anniversary',
)); ));

Loading…
Cancel
Save