added Tenant ordering

This commit is contained in:
2025-01-29 18:12:02 +01:00
parent 4f45bd2b76
commit 30a658b083

View File

@@ -113,7 +113,7 @@ export const useProfileStore = defineStore('profile', () => {
}
async function fetchTenants () {
tenants.value = (await supabase.from("tenants").select()).data
tenants.value = (await supabase.from("tenants").select().order("id",{ascending: true})).data
}
const getOwnProfile = computed(() => {