From 932436096fcc2ad1d0c562db6c449c41f65ac2c9 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Sun, 15 Dec 2019 03:43:31 +0900 Subject: [PATCH] =?UTF-8?q?=E7=AE=A1=E7=90=86=E7=94=BB=E9=9D=A2=E3=81=A7st?= =?UTF-8?q?ats=E3=82=92=E7=B6=99=E7=B6=9A=E3=83=AA=E3=82=AF=E3=82=A8?= =?UTF-8?q?=E3=82=B9=E3=83=88=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=20(#5608)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/admin/views/dashboard.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/client/app/admin/views/dashboard.vue b/src/client/app/admin/views/dashboard.vue index 15bd853c1..5ccfaa06c 100644 --- a/src/client/app/admin/views/dashboard.vue +++ b/src/client/app/admin/views/dashboard.vue @@ -115,7 +115,6 @@ export default Vue.extend({ connection: null, meta: null, instances: [], - clock: null, faDatabase }; }, @@ -124,7 +123,6 @@ export default Vue.extend({ this.connection = this.$root.stream.useSharedConnection('serverStats'); this.updateStats(); - this.clock = setInterval(this.updateStats, 3000); this.$root.getMeta().then(meta => { this.meta = meta; @@ -145,7 +143,6 @@ export default Vue.extend({ beforeDestroy() { this.connection.dispose(); - clearInterval(this.clock); }, methods: {