diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-12 13:05:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-12 13:05:37 +0900 |
| commit | eb3180f3b6207aa7f6382b3f89156cba06afc41d (patch) | |
| tree | 4ae09021aab83bad352c07d28d66c82d4100d385 /src | |
| parent | Merge pull request #3599 from syuilo/l10n_develop (diff) | |
| download | misskey-eb3180f3b6207aa7f6382b3f89156cba06afc41d.tar.gz misskey-eb3180f3b6207aa7f6382b3f89156cba06afc41d.tar.bz2 misskey-eb3180f3b6207aa7f6382b3f89156cba06afc41d.zip | |
Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/components/ui.header.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/app/mobile/views/components/ui.header.vue b/src/client/app/mobile/views/components/ui.header.vue index 9e06bcf974..d2914b5764 100644 --- a/src/client/app/mobile/views/components/ui.header.vue +++ b/src/client/app/mobile/views/components/ui.header.vue @@ -45,9 +45,7 @@ export default Vue.extend({ }, mounted() { - this.$nextTick(() => { - this.$store.commit('setUiHeaderHeight', this.$refs.root.offsetHeight); - }); + this.$store.commit('setUiHeaderHeight', 48); if (this.$store.getters.isSignedIn) { this.connection = this.$root.stream.useSharedConnection('main'); |