Adds fractions of seconds to time field in csv export

pull/2167/head
deniz kusefoglu 2017-10-26 12:52:36 -07:00
parent a1ea2c058e
commit daecb50a19
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import _ from 'lodash'
import moment from 'moment'
export const formatDate = timestamp =>
moment(timestamp).format('M/D/YYYY h:mm:ss A')
moment(timestamp).format('M/D/YYYY h:mm:ss.SSSSSSSSS A')
export const resultsToCSV = results => {
if (!_.get(results, ['0', 'series', '0'])) {