Skip to content

Commit

Permalink
fix: fill-height with init
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Jul 25, 2024
1 parent eb493f5 commit 0f70844
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-app class='ma-0 pa-0' id='flightbox'>
<AppToolbar />

<v-container class='ma-0 pa-0' :class='authenticated?"": "fill-height"' fluid >
<v-container class='ma-0 pa-0' :class='authenticated && init?"": "fill-height"' fluid >
<v-main>
<v-row
align='center'
Expand Down Expand Up @@ -52,6 +52,10 @@ const authenticated = computed(() => {
return userStore.authenticated;
});
const init = computed(() => {
return aircraftModule().init;
});
useHead({
title: () => {
if (authenticated.value && aircraftStore.init) {
Expand Down

0 comments on commit 0f70844

Please sign in to comment.