Skip to content

Commit

Permalink
HARMONY-1971: Fix typo: asc => desc
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnyinverso committed Jan 8, 2025
1 parent fac0294 commit 30a0239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/harmony/app/frontends/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export async function getJobsListing(
req.context.logger.info(`Get jobs listing for user ${req.user}`);
const root = getRequestRoot(req);
const { page, limit } = getPagingParams(req, env.defaultJobListPageSize);
const query: JobQuery = { where: {}, orderBy: { field: 'jobs.id', value: 'asc' } };
const query: JobQuery = { where: {}, orderBy: { field: 'jobs.id', value: 'desc' } };
query.labels = req.body.label;

if (!req.context.isAdminAccess) {
Expand Down

0 comments on commit 30a0239

Please sign in to comment.