Fix in Archived Filtering

This commit is contained in:
2025-03-16 18:39:36 +01:00
parent cff5d9be29
commit 38be27a89c
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ const setupPage = async () => {
console.log(item.value)
} else if(mode.value === "list") {
//Load Data for List
items.value = await useSupabaseSelect(type, dataType.supabaseSelectWithInformation || "*", dataType.supabaseSortColumn,dataType.supabaseSortAscending || false)
items.value = await useSupabaseSelect(type, dataType.supabaseSelectWithInformation || "*", dataType.supabaseSortColumn,dataType.supabaseSortAscending || false, true)
}
loaded.value = true