mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
update: query.
This commit is contained in:
@@ -9,7 +9,9 @@ export const load: PageLoad = async ({ depends, params, parent }) => {
|
||||
depends(Dependencies.ORGANIZATION);
|
||||
|
||||
const [projects, invoices] = await Promise.all([
|
||||
sdk.forConsole.projects.list({ queries: [Query.equal('teamId', params.organization)] }),
|
||||
sdk.forConsole.projects.list({
|
||||
queries: [Query.equal('teamId', params.organization), Query.select(['$id', 'name'])]
|
||||
}),
|
||||
isCloud ? sdk.forConsole.billing.listInvoices(params.organization) : undefined
|
||||
]);
|
||||
|
||||
|
||||
+1
-1
@@ -19,8 +19,8 @@
|
||||
|
||||
export let showDelete = false;
|
||||
export let invoices: InvoiceList;
|
||||
let error: string = null;
|
||||
|
||||
let error: string = null;
|
||||
let selectedTab = 'projects';
|
||||
let organizationName: string = null;
|
||||
let estimation: EstimationDeleteOrganization;
|
||||
|
||||
Reference in New Issue
Block a user