Changed Sorting in Profiles to Lastname

Added Index Card check for Anwesenheiten
Added Type Sorting to Receipts list
This commit is contained in:
2024-04-07 12:04:36 +02:00
parent 88bca67745
commit cd79725a27
3 changed files with 33 additions and 1 deletions

View File

@@ -564,7 +564,7 @@ export const useDataStore = defineStore('data', () => {
}
async function fetchProfiles () {
profiles.value = (await supabase.from("profiles").select().eq("tenant",currentTenant.value).order("fullName")).data
profiles.value = (await supabase.from("profiles").select().eq("tenant",currentTenant.value).order("lastName")).data
}
async function fetchOwnProfiles () {