Added Dev Only Logging

This commit is contained in:
2025-06-26 11:31:12 +02:00
parent bfc11bcace
commit a6b9247305

View File

@@ -46,6 +46,7 @@ const loading = ref(true)
const setupPage = async () => {
if((mode.value === "show") && route.params.id){
itemInfo.value = await useSupabaseSelectSingle("incominginvoices",route.params.id,"*, files(*), vendor(*)")
if(process.dev) console.log(itemInfo.value)
currentDocument.value = await useFiles().selectDocument(itemInfo.value.files[0].id)
}
loading.value = false