Skip to content

Commit 90e4076

Browse files
Abdkhan14Abdullah Khan
andauthored
feat(trace-eap-waterfall): Adding breadcrumbs section back to eap trace waterfall (#93904)
<img width="1432" alt="Screenshot 2025-06-19 at 10 17 49 AM" src="https://github.com/user-attachments/assets/ba7225c7-0c14-4924-9307-c9d0c79ab295" /> Co-authored-by: Abdullah Khan <abdullahkhan@PG9Y57YDXQ.local>
1 parent 2c8a518 commit 90e4076

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

static/app/views/performance/newTraceDetails/traceDrawer/details/span/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ import {IssueList} from 'sentry/views/performance/newTraceDetails/traceDrawer/de
5252
import {AIInputSection} from 'sentry/views/performance/newTraceDetails/traceDrawer/details/span/eapSections/aiInput';
5353
import {AIOutputSection} from 'sentry/views/performance/newTraceDetails/traceDrawer/details/span/eapSections/aiOutput';
5454
import {TraceDrawerComponents} from 'sentry/views/performance/newTraceDetails/traceDrawer/details/styles';
55+
import {BreadCrumbs} from 'sentry/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/breadCrumbs';
5556
import ReplayPreview from 'sentry/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/replayPreview';
5657
import {Request} from 'sentry/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/request';
5758
import {
@@ -596,6 +597,10 @@ function EAPSpanNodeDetails({
596597
/>
597598
) : null}
598599

600+
{isTransaction ? (
601+
<BreadCrumbs event={eventTransaction} organization={organization} />
602+
) : null}
603+
599604
{isTransaction && project ? (
600605
<EventViewHierarchy
601606
event={eventTransaction}

static/app/views/performance/newTraceDetails/traceDrawer/details/transaction/sections/breadCrumbs.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ export function BreadCrumbs({
3333

3434
return (
3535
<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+
/>
3742
</ResponsiveBreadcrumbWrapper>
3843
);
3944
}

0 commit comments

Comments
 (0)