diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-12-15 03:43:31 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-12-15 03:43:31 +0900 |
| commit | 932436096fcc2ad1d0c562db6c449c41f65ac2c9 (patch) | |
| tree | 0397c1de826d9a0541f35f984b763287f3cef591 /src/client/app/admin | |
| parent | ミュート/ブロックでページングと解除ができるように (#5... (diff) | |
| download | sharkey-932436096fcc2ad1d0c562db6c449c41f65ac2c9.tar.gz sharkey-932436096fcc2ad1d0c562db6c449c41f65ac2c9.tar.bz2 sharkey-932436096fcc2ad1d0c562db6c449c41f65ac2c9.zip | |
管理画面でstatsを継続リクエストしないように (#5608)
Diffstat (limited to 'src/client/app/admin')
| -rw-r--r-- | src/client/app/admin/views/dashboard.vue | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/app/admin/views/dashboard.vue b/src/client/app/admin/views/dashboard.vue index 15bd853c14..5ccfaa06ca 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: { |