updates timeformat

This commit is contained in:
dhrubesh-makeen 2021-04-24 00:58:59 +05:30
parent 079d742ea0
commit e1ea39e287

View File

@ -51,7 +51,7 @@ const _TraceList = (props: TraceListProps) => {
key: "startTime",
sorter: (a: any, b: any) => a.startTime - b.startTime,
sortDirections: ["descend", "ascend"],
render: (value: number) => moment(value).format("HH:mm"),
render: (value: number) => moment(value).format("YYYY-MM-DD hh:mm:ss"),
// new Date() assumes input in milliseconds. Start Time stamp returned by druid api for span list is in ms
},