You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by wu...@apache.org on 2019/12/21 09:54:49 UTC

[skywalking-rocketbot-ui] branch master updated: Fix add missing comma (#237)

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

wusheng 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 910eedd  Fix add missing comma (#237)
910eedd is described below

commit 910eeddc658cd2d9fe51b70ccc90d5a6723a5d79
Author: Kdump <ro...@gmail.com>
AuthorDate: Sat Dec 21 17:54:44 2019 +0800

    Fix add missing comma (#237)
    
    * fix topo metric transformation
    
    * add comma.
---
 src/views/components/topology/topo-detect-point.vue | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/components/topology/topo-detect-point.vue b/src/views/components/topology/topo-detect-point.vue
index a8b64a4..4a59f46 100644
--- a/src/views/components/topology/topo-detect-point.vue
+++ b/src/views/components/topology/topo-detect-point.vue
@@ -130,8 +130,8 @@
 
   @Component({
     components: {
-      TopoInstanceDependency, ChartResponse, TopoChart
-    }
+      TopoInstanceDependency, ChartResponse, TopoChart,
+    },
   })
   export default class TopoDetectPoint extends Vue {
     @State('rocketTopo') private stateTopo!: topoState;
@@ -176,7 +176,7 @@
           .then(() => {
             this.GET_QUERY({
               serviceId: service.id || '',
-              duration: this.durationTime
+              duration: this.durationTime,
             });
           });
       }
@@ -216,7 +216,7 @@
       this.GET_INSTANCE_DEPENDENCY({
         serverServiceId: this.stateTopo.selectedServiceCall.source.id,
         clientServiceId: this.stateTopo.selectedServiceCall.target.id,
-        duration: this.durationTime
+        duration: this.durationTime,
       });
     }
   }