From d58f8567b5886c8e1c7981d1c78f29d1139e1004 Mon Sep 17 00:00:00 2001 From: Drew Regitsky Date: Wed, 24 Feb 2016 17:44:53 -0800 Subject: [PATCH] fix(send-later): options text capitalization: title case => sentence case --- .../send-later/lib/send-later-popover.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal_packages/send-later/lib/send-later-popover.jsx b/internal_packages/send-later/lib/send-later-popover.jsx index b1b6d6bdb..23081c43e 100644 --- a/internal_packages/send-later/lib/send-later-popover.jsx +++ b/internal_packages/send-later/lib/send-later-popover.jsx @@ -11,11 +11,11 @@ import {DATE_FORMAT_SHORT, DATE_FORMAT_LONG} from './send-later-constants' const SendLaterOptions = { 'In 1 hour': DateUtils.in1Hour, 'In 2 hours': DateUtils.in2Hours, - 'Later Today': DateUtils.laterToday, - 'Tomorrow Morning': DateUtils.tomorrow, - 'Tomorrow Evening': DateUtils.tomorrowEvening, - 'This Weekend': DateUtils.thisWeekend, - 'Next Week': DateUtils.nextWeek, + 'Later today': DateUtils.laterToday, + 'Tomorrow morning': DateUtils.tomorrow, + 'Tomorrow evening': DateUtils.tomorrowEvening, + 'This weekend': DateUtils.thisWeekend, + 'Next week': DateUtils.nextWeek, } class SendLaterPopover extends Component {