switch to new ES6 DateUtils imports

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-01-10 21:50:32 +00:00
parent b16dcbc057
commit 77e2ceba9e
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E
3 changed files with 7 additions and 7 deletions

View file

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