Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt committed Nov 17, 2024
1 parent 4c44eaf commit bb17ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/api/v1/runs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ function getRunQuery({ ctx }: { ctx: Context }) {
and (${filtersQuery})
order by
${sql.unsafe(orderByClause)}
limit ${type ? 10000 : Number(limit)}
limit ${Number(limit)}
offset ${Number(page) * Number(limit)}
),
evaluation_results as (
Expand Down

0 comments on commit bb17ec3

Please sign in to comment.