Browse Source

properly fetch release

pull/1572/head
Bernd Storath 6 months ago
parent
commit
85b52820db
  1. 1
      src/app/components/header/Update.vue
  2. 1
      src/app/layouts/default.vue
  3. 4
      src/shared/locales.ts

1
src/app/components/header/Update.vue

@ -23,5 +23,4 @@
<script lang="ts" setup>
const globalStore = useGlobalStore();
globalStore.fetchRelease();
</script>

1
src/app/layouts/default.vue

@ -55,6 +55,7 @@
<script setup lang="ts">
const globalStore = useGlobalStore();
globalStore.fetchRelease();
const route = useRoute();

4
src/shared/locales.ts

@ -1,3 +1 @@
export const LOCALES = [
{ code: 'en', name: 'English' },
];
export const LOCALES = [{ code: 'en', name: 'English' }];

Loading…
Cancel
Save