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 2021/05/26 12:41:02 UTC

[GitHub] [skywalking-rocketbot-ui] Fine0830 commented on a change in pull request #497: Fix a bug in the trace statistics page

Fine0830 commented on a change in pull request #497:
URL: https://github.com/apache/skywalking-rocketbot-ui/pull/497#discussion_r639685478



##########
File path: 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')">

Review comment:
       ```suggestion
           <span class="r cp" @click="sortStatistics(item.key)" :key="componentKey" v-if="(item.key != 'endpointName') & (item.key != 'type')">
   ```
    <span class="r cp" @click="sortStatistics(item.key)" :key="componentKey" v-show="(item.key !== 'endpointName') & (item.key !== 'type')">




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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