We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39bb125 commit 3ecf41cCopy full SHA for 3ecf41c
1 file changed
apps/sim/app/api/table/route.ts
@@ -260,6 +260,12 @@ export const GET = withRouteHandler(async (request: NextRequest) => {
260
t.createdAt instanceof Date ? t.createdAt.toISOString() : String(t.createdAt),
261
updatedAt:
262
t.updatedAt instanceof Date ? t.updatedAt.toISOString() : String(t.updatedAt),
263
+ archivedAt:
264
+ t.archivedAt instanceof Date
265
+ ? t.archivedAt.toISOString()
266
+ : t.archivedAt
267
+ ? String(t.archivedAt)
268
+ : null,
269
}
270
}),
271
totalCount: tables.length,
0 commit comments