You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by me...@apache.org on 2020/07/28 09:13:14 UTC

[shardingsphere-elasticjob-ui] branch master updated: refactor:fix bug

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

menghaoran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere-elasticjob-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new 8324f03  refactor:fix bug
     new c2c1c3b  Merge pull request #22 from wqzwh/master
8324f03 is described below

commit 8324f0305f7c2f9ae810cf15a5d5e289ec912d0c
Author: wqzwh <wa...@apache.org>
AuthorDate: Tue Jul 28 17:08:57 2020 +0800

    refactor:fix bug
---
 .../src/views/job-dashboard/index.vue                              | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend/src/views/job-dashboard/index.vue b/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend/src/views/job-dashboard/index.vue
index 7278b66..29924be 100644
--- a/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend/src/views/job-dashboard/index.vue
+++ b/shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend/src/views/job-dashboard/index.vue
@@ -109,6 +109,7 @@ export default {
       register: {},
       running: {},
       result: {}
+    }  
   },
   created() {
     this.getTasksPeriod()
@@ -163,7 +164,7 @@ export default {
           }]
         }
       })
-    }
+    },
     getJobsRunning() {
       const params = {
         since: 'lastWeek'
@@ -203,7 +204,7 @@ export default {
           }]
         }
       })
-    }
+    },
     getJobsRegister() {
       API.getJobsRegister().then(res => {
         const xAxis = []
@@ -340,7 +341,7 @@ export default {
           ]
         }
       })
-    },
+    }
   }
 }
 </script>