Skip to content

Commit

Permalink
Merge pull request #4143 from turt2live/travis/date-sep-12h
Browse files Browse the repository at this point in the history
Support 12hr time on DateSeparator
  • Loading branch information
ara4n authored Jun 1, 2017
2 parents e868dbb + 640fa10 commit 1fbec01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/messages/DateSeparator.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = React.createClass({
label = days[date.getDay()];
}
else {
label = DateUtils.formatFullDate(date);
label = DateUtils.formatFullDate(date, this.props.showTwelveHour);
}

return (
Expand Down

0 comments on commit 1fbec01

Please sign in to comment.