You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by GitBox <gi...@apache.org> on 2018/04/09 07:43:25 UTC

[GitHub] hanahmily closed pull request #156: Fix trace field start time error

hanahmily closed pull request #156: Fix trace field start time error
URL: https://github.com/apache/incubator-skywalking-ui/pull/156
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

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');
         },
       },
       {


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services