This is an automated email from the ASF dual-hosted git repository.

hanahmily pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new a42f1b2  Fix trace field start time error (#156)
a42f1b2 is described below

commit a42f1b27d5c8cbde86945767830f71fe41c532df
Author: lican <295198...@qq.com>
AuthorDate: Mon Apr 9 15:43:24 2018 +0800

    Fix trace field start time error (#156)
    
    * fix_trace_field_start_time_error
    
    * fix_trace_field_start_time_error
---
 src/components/TraceTable/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/TraceTable/index.js 
b/src/components/TraceTable/index.js
index d91e4bf..e83f311 100644
--- a/src/components/TraceTable/index.js
+++ b/src/components/TraceTable/index.js
@@ -80,7 +80,7 @@ class TraceTable extends PureComponent {
       {
         title: 'StartTime',
         render: (text, record) => {
-          return moment(record.startTime).format('YYYY-MM-DD HH:mm:ss.SSS');
+          return moment(parseInt(record.start, 10)).format('YYYY-MM-DD 
HH:mm:ss.SSS');
         },
       },
       {

-- 
To stop receiving notification emails like this one, please contact
hanahm...@apache.org.

Reply via email to