diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-09 08:38:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-09 08:38:30 +0900 |
| commit | f34f8d304c0fa286b3972e7dfac064e74a00d4ae (patch) | |
| tree | a5dcb06c31281f9822c8e1634c6fd10342c63dae /src | |
| parent | 2.34.1 (diff) | |
| download | misskey-f34f8d304c0fa286b3972e7dfac064e74a00d4ae.tar.gz misskey-f34f8d304c0fa286b3972e7dfac064e74a00d4ae.tar.bz2 misskey-f34f8d304c0fa286b3972e7dfac064e74a00d4ae.zip | |
Improve performance
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/components/time.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |