From ea9265b30b563e19fdee8bdfd13b870c3bf077d2 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 29 Apr 2018 21:28:45 +0900 Subject: Fix bug --- src/client/app/desktop/views/components/ui.header.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/client/app/desktop') diff --git a/src/client/app/desktop/views/components/ui.header.vue b/src/client/app/desktop/views/components/ui.header.vue index 353fd58561..7729575b56 100644 --- a/src/client/app/desktop/views/components/ui.header.vue +++ b/src/client/app/desktop/views/components/ui.header.vue @@ -46,9 +46,10 @@ export default Vue.extend({ this.$store.commit('setUiHeaderHeight', 48); if ((this as any).os.isSignedIn) { - const ago = (new Date().getTime() - new Date((this as any).os.i.lastUsedAt).getTime()) / 1000 + const ago = (new Date().getTime() - new Date((this as any).os.i.lastUsedAt).getTime()) / 1000; const isHisasiburi = ago >= 3600; (this as any).os.i.lastUsedAt = new Date(); + (this as any).os.bakeMe(); if (isHisasiburi) { (this.$refs.welcomeback as any).style.display = 'block'; (this.$refs.main as any).style.overflow = 'hidden'; @@ -132,7 +133,7 @@ root(isDark) line-height 48px margin 0 text-align center - color #888 + color isDark ? #fff : #888 opacity 0 > .container -- cgit v1.2.3-freya