Merge pull request #3085 from influxdata/bugfix/annotation-date-format

Change annotation date format to: YYYY/MM/DD
pull/3089/head
Andrew Watkins 2018-03-28 13:08:26 -07:00 committed by GitHub
commit acd31ec3a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>
)