File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
static/app/views/performance/newTraceDetails/traceDrawer/details Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ import {IssueList} from 'sentry/views/performance/newTraceDetails/traceDrawer/de
52
52
import { AIInputSection } from 'sentry/views/performance/newTraceDetails/traceDrawer/details/span/eapSections/aiInput' ;
53
53
import { AIOutputSection } from 'sentry/views/performance/newTraceDetails/traceDrawer/details/span/eapSections/aiOutput' ;
54
54
import { TraceDrawerComponents } from 'sentry/views/performance/newTraceDetails/traceDrawer/details/styles' ;
55
+ import { BreadCrumbs } from 'sentry/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/breadCrumbs' ;
55
56
import ReplayPreview from 'sentry/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/replayPreview' ;
56
57
import { Request } from 'sentry/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/request' ;
57
58
import {
@@ -596,6 +597,10 @@ function EAPSpanNodeDetails({
596
597
/>
597
598
) : null }
598
599
600
+ { isTransaction ? (
601
+ < BreadCrumbs event = { eventTransaction } organization = { organization } />
602
+ ) : null }
603
+
599
604
{ isTransaction && project ? (
600
605
< EventViewHierarchy
601
606
event = { eventTransaction }
Original file line number Diff line number Diff line change @@ -33,7 +33,12 @@ export function BreadCrumbs({
33
33
34
34
return (
35
35
< ResponsiveBreadcrumbWrapper >
36
- < Breadcrumbs data = { matchingEntry . data } event = { event } organization = { organization } />
36
+ < Breadcrumbs
37
+ data = { matchingEntry . data }
38
+ event = { event }
39
+ organization = { organization }
40
+ disableCollapsePersistence
41
+ />
37
42
</ ResponsiveBreadcrumbWrapper >
38
43
) ;
39
44
}
You can’t perform that action at this time.
0 commit comments