Skip to content

Commit

Permalink
Fix bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Dec 9, 2018
1 parent 1c589c7 commit fc05540
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/client/app/mobile/views/components/ui.header.vue
Expand Up @@ -45,7 +45,9 @@ export default Vue.extend({
},
mounted() {
this.$store.commit('setUiHeaderHeight', this.$refs.root.offsetHeight);
this.$nextTick(() => {
this.$store.commit('setUiHeaderHeight', this.$refs.root.offsetHeight);
});
if (this.$store.getters.isSignedIn) {
this.connection = this.$root.stream.useSharedConnection('main');
Expand Down

0 comments on commit fc05540

Please sign in to comment.