Merge pull request #4092 from turt2live/travis/12hrtime-hotfix

Show 12hr time on hover too
This commit is contained in:
Matthew Hodgson 2017-05-30 20:15:01 +01:00 committed by GitHub
commit 4493994dd5

View file

@ -16,7 +16,6 @@ limitations under the License.
'use strict';
import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore';
const React = require('react');
const DateUtils = require('matrix-react-sdk/lib/DateUtils');
@ -30,7 +29,7 @@ module.exports = React.createClass({
render: function() {
const date = new Date(this.props.ts);
return (
<span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }>
<span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date, this.props.showTwelveHour) }>
{ DateUtils.formatTime(date, this.props.showTwelveHour) }
</span>
);