Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
fix: modfiy prisma query
Browse files Browse the repository at this point in the history
  • Loading branch information
jspark2000 committed Mar 14, 2024
1 parent ceff3db commit 7762466
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/app/src/roster/roster.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export class RosterService {
skip: calculatePaginationOffset(page, limit),
orderBy: [
{
admissionYear: 'asc',
admissionYear: 'asc'
},
{
name: 'asc'
}
]
Expand Down

0 comments on commit 7762466

Please sign in to comment.