This commit is contained in:
Kseninia Mikhaylova 2024-04-24 16:11:36 +03:00
parent bb7f15366c
commit 7c70f44d7a
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ type ItemType = {
"hours": string,
"percent": string
}
const baseUrl = import.meta.env.VITE_SERVER || ''
const baseUrl = import.meta.env ? import.meta.env.VITE_SERVER || '' : ''
const numberElement = ref(0)
const item = computed(() => {
if (Object.values(data.value)[numberElement.value]) {