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 c5bf2e6 commit 1bb9573Copy full SHA for 1bb9573
static/app/views/performance/newTraceDetails/traceModels/traceTree.tsx
@@ -2286,8 +2286,9 @@ function nodeToId(n: TraceTreeNode<TraceTree.NodeValue>): TraceTree.NodePath {
2286
}
2287
if (isSiblingAutogroupedNode(n)) {
2288
const child = n.children[0]!;
2289
- if (isSpanNode(child)) {
2290
- return `ag-${child.value.span_id}`;
+ if (isSpanNode(child) || isEAPSpanNode(child)) {
+ const spanId = isEAPSpanNode(child) ? child.value.event_id : child.value.span_id;
2291
+ return `ag-${spanId}`;
2292
2293
2294
0 commit comments