Skip to content

Commit

Permalink
Fix transaction route sort field
Browse files Browse the repository at this point in the history
  • Loading branch information
smith committed Dec 10, 2020
1 parent a4064f0 commit 8d947d1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ export const transactionGroupsOverviewRoute = createRoute({
pageIndex: toNumberRt,
sortDirection: t.union([t.literal('asc'), t.literal('desc')]),
sortField: t.union([
t.literal('error_rate'),
t.literal('impact'),
t.literal('latency'),
t.literal('name'),
t.literal('throughput'),
t.literal('errorRate'),
t.literal('impact'),
]),
}),
]),
Expand Down

0 comments on commit 8d947d1

Please sign in to comment.