Fix date format

pull/3085/head
Andrew Watkins 2018-03-28 11:52:32 -07:00
parent ab31beab7f
commit a8ef331027
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import * as actions from 'shared/actions/annotations'
const TimeStamp = ({time}) => (
<div className="annotation-tooltip--timestamp">
{`${moment(+time).format('YYYY/DD/MM HH:mm:ss.SS')}`}
{`${moment(+time).format('YYYY/MM/DD HH:mm:ss.SS')}`}
</div>
)