File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
static/app/views/alerts/rules/uptime Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import {t, tct} from 'sentry/locale';
1313import { space } from 'sentry/styles/space' ;
1414import { getShortEventId } from 'sentry/utils/events' ;
1515import { MutableSearch } from 'sentry/utils/tokenizeSearch' ;
16+ import useOrganization from 'sentry/utils/useOrganization' ;
1617import type { UptimeCheck } from 'sentry/views/alerts/rules/uptime/types' ;
1718import { useSpans } from 'sentry/views/insights/common/queries/useDiscover' ;
1819import {
@@ -102,6 +103,7 @@ function CheckInBodyCell({
102103 traceSampling : boolean ;
103104} ) {
104105 const theme = useTheme ( ) ;
106+ const organization = useOrganization ( ) ;
105107
106108 const {
107109 timestamp,
@@ -197,7 +199,7 @@ function CheckInBodyCell({
197199 < TraceCell >
198200 < Link
199201 to = { {
200- pathname : `/performance/trace/${ traceId } /` ,
202+ pathname : `/organizations/ ${ organization . slug } / performance/trace/${ traceId } /` ,
201203 query : {
202204 includeUptime : '1' ,
203205 timestamp : new Date ( timestamp ) . getTime ( ) / 1000 ,
You can’t perform that action at this time.
0 commit comments