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/09 15:40:43 UTC

[skywalking-rocketbot-ui] branch master updated: fix topo can't drag (#226)

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 53573c1  fix topo can't drag (#226)
53573c1 is described below

commit 53573c1d3b7db48cecb2d026ef0698017099a396
Author: Kdump <ro...@gmail.com>
AuthorDate: Mon Dec 9 23:40:34 2019 +0800

    fix topo can't drag (#226)
    
    * fix topo can't drag
    
    * fix topo can't drag
---
 src/views/components/topology/topo-aside.vue | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/src/views/components/topology/topo-aside.vue b/src/views/components/topology/topo-aside.vue
index 9a0784e..b7ffc0b 100644
--- a/src/views/components/topology/topo-aside.vue
+++ b/src/views/components/topology/topo-aside.vue
@@ -234,12 +234,7 @@
       this.drawerMainBodyHeight = `${document.body.clientHeight - 50}px`;
     }
 
-    private beforeCreate() {
-      this.$store.registerModule('rocketTopo', topo);
-    }
-
-    private async created() {
-      this.getTopo();
+    private created() {
       this.SET_EVENTS([]);
       this.SET_COMPS_TREE(this.initState.tree);
     }