Skip to content

Commit 955d0c0

Browse files
authored
feat(conversations): Add conversation detail page with new design (#112571)
1 parent 1586980 commit 955d0c0

20 files changed

+975
-887
lines changed

static/app/router/routes.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2321,6 +2321,14 @@ function buildRoutes(): RouteObject[] {
23212321
() => import('sentry/views/insights/pages/conversations/overview')
23222322
),
23232323
},
2324+
{
2325+
path: ':conversationId/',
2326+
component: make(
2327+
() => import('sentry/views/insights/pages/conversations/conversationDetail')
2328+
),
2329+
},
2330+
transactionSummaryRoute,
2331+
traceView,
23242332
],
23252333
},
23262334
{

static/app/utils/useParams.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ type ParamKeys =
2222
| 'broadcastId'
2323
| 'clientID'
2424
| 'codeId'
25+
| 'conversationId'
2526
| 'dashboardId'
2627
| 'dataExportId'
2728
| 'dataForwarderId'

static/app/views/insights/pages/conversations/components/conversationDrawer.spec.tsx

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)