Revert "Merge pull request #3019 from matrix-org/travis/sr/fix-timeline"

This reverts commit 9a1a9825b0, reversing
changes made to 62dc83310a.
This commit is contained in:
J. Ryan Stinnett 2019-05-28 12:19:35 +01:00
parent e1d1c8f99c
commit f0d67e0454
5 changed files with 10 additions and 76 deletions

View file

@ -23,17 +23,12 @@ export default class MessageTimestamp extends React.Component {
static propTypes = {
ts: PropTypes.number.isRequired,
showTwelveHour: PropTypes.bool,
ariaHidden: PropTypes.bool,
};
render() {
const date = new Date(this.props.ts);
return (
<span
className="mx_MessageTimestamp"
title={formatFullDate(date, this.props.showTwelveHour)}
aria-hidden={this.props.ariaHidden}
>
<span className="mx_MessageTimestamp" title={formatFullDate(date, this.props.showTwelveHour)}>
{ formatTime(date, this.props.showTwelveHour) }
</span>
);