Skip to content

Commit

Permalink
fix(ui): increase pagination size for TracePage (#2642)
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerHYang authored and mikeldking committed Mar 20, 2024
1 parent cab6464 commit 90ba503
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion app/src/pages/trace/TracePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ export function TracePage() {
query TracePageQuery($traceId: ID!, $id: GlobalID!) {
project: node(id: $id) {
... on Project {
spans(traceIds: [$traceId], sort: { col: startTime, dir: asc }) {
spans(
traceIds: [$traceId]
sort: { col: startTime, dir: asc }
first: 1000
) {
edges {
span: node {
context {
Expand Down
13 changes: 9 additions & 4 deletions app/src/pages/trace/__generated__/TracePageQuery.graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 90ba503

Please sign in to comment.