sort by name by default

This commit is contained in:
miloschwartz
2026-02-27 15:53:27 -08:00
parent 8347203bbe
commit ad9289e0c1
5 changed files with 5 additions and 5 deletions

View File

@@ -429,7 +429,7 @@ export async function listResources(
? order === "asc"
? asc(resources[sort_by])
: desc(resources[sort_by])
: asc(resources.resourceId)
: asc(resources.name)
),
countQuery
]);