tweak(event-card): Use 12-hour time rather than 24-hour time

This commit is contained in:
Ben Gotow 2015-09-10 19:00:33 -07:00
parent b86ef9b805
commit 79d80464f3

View file

@ -53,7 +53,7 @@ class EventComponent extends React.Component
</div>
<div>
<div className="event-time">
{moment(@state.when['start_time']*1000).tz(Utils.timeZone).format("H:mm a z")}
{moment(@state.when['start_time']*1000).tz(Utils.timeZone).format("h:mm a z")}
</div>
{@_renderEventActions()}
</div>