You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by qi...@apache.org on 2021/05/27 05:39:19 UTC

[skywalking-rocketbot-ui] branch master updated: Fix a bug in the trace statistics page (#497)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ae1174c  Fix a bug in the trace statistics page (#497)
ae1174c is described below

commit ae1174c44a1d7cf69f47ae8e72ee08fe2eea824d
Author: Xialijun <co...@163.com>
AuthorDate: Thu May 27 13:38:59 2021 +0800

    Fix a bug in the trace statistics page (#497)
    
    * In the trace statistics table header,the column of Type doesn't need sorting, so remove the sort button
    
    * replace !=' w'ith !='!‘'
---
 src/views/components/common/trace-chart-table/trace-container.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/components/common/trace-chart-table/trace-container.vue b/src/views/components/common/trace-chart-table/trace-container.vue
index 9d75b43..55f23d3 100644
--- a/src/views/components/common/trace-chart-table/trace-container.vue
+++ b/src/views/components/common/trace-chart-table/trace-container.vue
@@ -18,7 +18,7 @@ limitations under the License. -->
     <div class="trace-header" v-if="type === 'statistics'">
       <div :class="item.label" v-for="(item, index) in headerData" :key="index">
         {{ item.value }}
-        <span class="r cp" @click="sortStatistics(item.key)" :key="componentKey" v-if="item.key != 'endpointName'">
+        <span class="r cp" @click="sortStatistics(item.key)" :key="componentKey" v-if="(item.key !== 'endpointName') & (item.key !== 'type')">
           <svg class="icon">
             <use xlink:href="#sort"></use>
           </svg>