mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
[FIX] (agent) - order by createdAt
This commit is contained in:
@@ -7,7 +7,7 @@ import {Page, PageActions, PageContent, PageHeader, PageTitle} from "@/features/
|
|||||||
import {notFound} from "next/navigation";
|
import {notFound} from "next/navigation";
|
||||||
import {db} from "@/db";
|
import {db} from "@/db";
|
||||||
import * as drizzleDb from "@/db";
|
import * as drizzleDb from "@/db";
|
||||||
import {eq, not} from "drizzle-orm";
|
import {desc, eq, not} from "drizzle-orm";
|
||||||
import {EmptyStatePlaceholder} from "@/components/wrappers/common/empty-state-placeholder";
|
import {EmptyStatePlaceholder} from "@/components/wrappers/common/empty-state-placeholder";
|
||||||
import {Metadata} from "next";
|
import {Metadata} from "next";
|
||||||
|
|
||||||
@@ -21,7 +21,8 @@ export default async function RoutePage(props: PageParams<{}>) {
|
|||||||
where: not(eq(drizzleDb.schemas.agent.isArchived, true)),
|
where: not(eq(drizzleDb.schemas.agent.isArchived, true)),
|
||||||
with: {
|
with: {
|
||||||
databases: true
|
databases: true
|
||||||
}
|
},
|
||||||
|
orderBy: (fields) => desc(fields.createdAt),
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(agents);
|
console.log(agents);
|
||||||
|
|||||||
Reference in New Issue
Block a user