Skip to content

Commit eb5ecf7

Browse files
Abdkhan14Abdullah Khan
and
Abdullah Khan
authored
fix(new-trace-url) Updated node path encoding. (#68458)
Trace view page expects `[`span-${spanId}`, `txn-${eventId}`]` to look for and scroll to span but we were passing [`span:${spanId}`, `txn:${eventId}`] Co-authored-by: Abdullah Khan <abdullahkhan@PG9Y57YDXQ.local>
1 parent bc4a9b4 commit eb5ecf7

File tree

1 file changed

+1
-1
lines changed
  • static/app/views/performance/traceDetails

1 file changed

+1
-1
lines changed

static/app/views/performance/traceDetails/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function getTraceDetailsUrl(
3535

3636
if (organization.features.includes('trace-view-v1')) {
3737
if (spanId) {
38-
queryParams.node = [`span:${spanId}`, `txn:${eventId}`];
38+
queryParams.node = [`span-${spanId}`, `txn-${eventId}`];
3939
}
4040
return {
4141
pathname: normalizeUrl(

0 commit comments

Comments
 (0)