Fixed issue with on-hover timestamps

Этот коммит содержится в:
Reed Garmsen
2016-02-04 11:53:38 -08:00
родитель 9b8761df8d
Коммит 1778eb8115
2 изменённых файлов: 13 добавлений и 33 удалений

Просмотреть файл

@@ -2,6 +2,7 @@
// See License.txt for license information.
import Constants from '../utils/constants.jsx';
import * as Utils from '../utils/utils.jsx';
import {FormattedRelative, FormattedDate} from 'mm-intl';
@@ -24,7 +25,7 @@ export default class TimeSince extends React.Component {
if (this.props.sameUser) {
return (
<time className='post__time'>
<FormattedRelative value={this.props.eventTime} />
{Utils.displayTime(this.props.eventTime)}
</time>
);
}