From f34f8d304c0fa286b3972e7dfac064e74a00d4ae Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 9 Jun 2018 08:38:30 +0900 Subject: [PATCH] Improve performance --- src/client/app/common/views/components/time.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/common/views/components/time.vue b/src/client/app/common/views/components/time.vue index 58ed115620..aebfb33897 100644 --- a/src/client/app/common/views/components/time.vue +++ b/src/client/app/common/views/components/time.vue @@ -59,7 +59,7 @@ export default Vue.extend({ created() { if (this.mode == 'relative' || this.mode == 'detail') { this.tick(); - this.tickId = setInterval(this.tick, 5000); + this.tickId = setInterval(this.tick, 10000); } }, destroyed() {