Removes the lowercasing to the header title component

This commit is contained in:
Sofiya Tepikin
2019-09-15 15:29:15 +02:00
parent 580f1e79ba
commit f444de0b87
5 changed files with 15 additions and 16 deletions
+3 -2
View File
@@ -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) {