You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by ha...@apache.org on 2018/03/02 23:55:39 UTC

[incubator-skywalking-ui] branch fix/resources updated: Amend trace state error

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

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


The following commit(s) were added to refs/heads/fix/resources by this push:
     new ce43313  Amend trace state error
ce43313 is described below

commit ce43313c9bd4daebbeb135693d68800da0d23a8c
Author: gaohongtao <ha...@gmail.com>
AuthorDate: Sat Mar 3 07:55:37 2018 +0800

    Amend trace state error
---
 src/components/TraceTable/index.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/TraceTable/index.js b/src/components/TraceTable/index.js
index de46a1c..8279935 100644
--- a/src/components/TraceTable/index.js
+++ b/src/components/TraceTable/index.js
@@ -25,9 +25,9 @@ class TraceTable extends PureComponent {
         dataIndex: 'isError',
         render: (text, record) => {
           if (record.isError) {
-            return 'Success';
-          } else {
             return 'Error';
+          } else {
+            return 'Success';
           }
         },
       },

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