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/07 01:35:49 UTC

[incubator-skywalking-ui] branch bug/trace created (now 879ffcc)

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

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


      at 879ffcc  Fix mq trace issue

This branch includes the following new commits:

     new 879ffcc  Fix mq trace issue

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


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

[incubator-skywalking-ui] 01/01: Fix mq trace issue

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 879ffcc7eb1cd0d0bf92c59c9308b6de8c3f1050
Author: hanahmily <ha...@gmail.com>
AuthorDate: Wed Mar 7 09:30:39 2018 +0800

    Fix mq trace issue
---
 src/components/TraceTable/index.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/components/TraceTable/index.js b/src/components/TraceTable/index.js
index 8b66c2b..d257527 100644
--- a/src/components/TraceTable/index.js
+++ b/src/components/TraceTable/index.js
@@ -32,7 +32,11 @@ class TraceTable extends PureComponent {
     return (
       <Collapse
         bordered={false}
-        onChange={(key) => { if (!spansContainer[key]) { this.props.onExpand(record.key, key); } }}
+        onChange={(key) => {
+          if (key.length > 0 && !spansContainer[key]) {
+            this.props.onExpand(record.key, key[0]);
+          }
+        }}
       >
         {traceIds.map((k) => {
           return (

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