Skip to content

Commit

Permalink
fix typescript issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cars10 committed Dec 14, 2024
1 parent bd56e90 commit 56e3293
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<modal-loader />
<alert-snackbar />
<update-check />
<update-check v-if="buildConfig.tauri" />

<app-footer />
</q-layout>
Expand All @@ -35,6 +35,7 @@
import { useConnectionStore } from './store/connection'
import { setAppThemeCss, setupThemeListener } from './helpers/theme.ts'
import UpdateCheck from './components/base/UpdateCheck.vue'
import { buildConfig } from './buildConfig.ts'
const themeStore = useThemeStore()
const connectionStore = useConnectionStore()
Expand Down
2 changes: 1 addition & 1 deletion src/components/base/UpdateCheck.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div v-else-if="installing">
{{ t('update_check.installing') }}
</div>
<div v-else>
<div v-else-if="updateInfo">
{{ t('update_check.update_info', { version: updateInfo.version }) }}
</div>
</q-card-section>
Expand Down

0 comments on commit 56e3293

Please sign in to comment.