fix: show frontend version in about dialog
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2022-10-24 15:41:12 +02:00
parent 05d000fc50
commit 5ddce387fe
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 1 deletions

View File

@ -34,9 +34,10 @@
<script setup lang="ts">
import {computed} from 'vue'
import {VERSION as frontendVersion} from '@/version.json'
import {VERSION} from '@/version.json'
import {useConfigStore} from '@/stores/config'
const configStore = useConfigStore()
const apiVersion = computed(() => configStore.version)
const frontendVersion = VERSION
</script>