forked from matrix/element-web
Merge pull request #4143 from turt2live/travis/date-sep-12h
Support 12hr time on DateSeparator
This commit is contained in:
commit
1fbec01edb
|
@ -49,7 +49,7 @@ module.exports = React.createClass({
|
||||||
label = days[date.getDay()];
|
label = days[date.getDay()];
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
label = DateUtils.formatFullDate(date);
|
label = DateUtils.formatFullDate(date, this.props.showTwelveHour);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue