Removes the lowercasing to the header title component
This commit is contained in:
@@ -4,8 +4,9 @@ import moment from 'moment'
|
||||
export default function (date) {
|
||||
const today = LocalDate.now()
|
||||
const dateToDisplay = LocalDate.parse(date)
|
||||
const formattedDate = today.equals(dateToDisplay) ? 'today' : moment(date).format('MMMM Do YYYY')
|
||||
return formattedDate.toLowerCase()
|
||||
return today.equals(dateToDisplay) ?
|
||||
'today' :
|
||||
moment(date).format('MMMM Do YYYY')
|
||||
}
|
||||
|
||||
export function formatDateForShortText (date) {
|
||||
|
||||
Reference in New Issue
Block a user