Last active
November 14, 2016 18:57
-
-
Save jacobmischka/f0ca19b62f0921074446cb3e653206f9 to your computer and use it in GitHub Desktop.
not
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(this.props.event.start.isSame(this.props.event.end, 'day') | |
|| (this.props.event.allDay && this.props.event.start | |
.isSame(this.props.event.end.clone().subtract(1, 'day')))){ | |
const dateFormat = 'll'; | |
return this.props.event.start.format(dateFormat); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment