Corrected Empty Slot for Tables
This commit is contained in:
@@ -133,7 +133,7 @@ export const useDataStore = defineStore('data', {
|
||||
},
|
||||
async fetchVendors() {
|
||||
// @ts-ignore
|
||||
this.vendors = (await supabase.from("vendors").select()).data
|
||||
this.vendors = (await supabase.from("vendors").select().order('vendorNumber',{ascending: true})).data
|
||||
},
|
||||
async fetchVendorInvoices() {
|
||||
// @ts-ignore
|
||||
|
||||
Reference in New Issue
Block a user