added Tenant ordering
This commit is contained in:
@@ -113,7 +113,7 @@ export const useProfileStore = defineStore('profile', () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function fetchTenants () {
|
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(() => {
|
const getOwnProfile = computed(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user