We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201efc1 commit 5fe324cCopy full SHA for 5fe324c
static/app/views/performance/traceDetails/index.tsx
@@ -97,6 +97,7 @@ class TraceSummary extends Component<Props> {
97
const traceSlug = this.getTraceSlug();
98
const {start, end, statsPeriod} = this.getDateSelection();
99
const dateSelected = Boolean(statsPeriod || (start && end));
100
+ const backend = decodeScalar(location.query.backend);
101
102
const content = ({
103
isLoading,
@@ -147,7 +148,7 @@ class TraceSummary extends Component<Props> {
147
148
149
return (
150
<TraceFullDetailedQuery
- type="detailed"
151
+ type={backend === 'indexedSpans' ? 'spans' : 'detailed'}
152
location={location}
153
orgSlug={organization.slug}
154
traceId={traceSlug}
0 commit comments