Changes in Tags and Updating

This commit is contained in:
2024-07-21 22:34:10 +02:00
parent 510ce73ecd
commit dc480f38b6
2 changed files with 18 additions and 11 deletions

View File

@@ -28,7 +28,8 @@ const selectedTags = ref("Eingang")
const documents = ref([])
const setupPage = async () => {
documents.value = await useSupabaseSelectDocuments("*, project(id,name), customer(id,name), contract(id,name), vendor(id,name), plant(id,name), vehicle(id,licensePlate), product(id,name), profile(id,fullName) ")
//documents.value = await useSupabaseSelectDocuments("*, project(id,name), customer(id,name), contract(id,name), vendor(id,name), plant(id,name), vehicle(id,licensePlate), product(id,name), profile(id,fullName) ")
documents.value = await useSupabaseSelectDocuments("*")
}