+
- )
-}
-
-const ExceptionRecordings = ({ sessionIds }: { sessionIds: string[] }): JSX.Element => {
- return (
-
-
+ {event.properties.$current_url && (
+
{event.properties.$current_url}
+ )}
+
)
}
diff --git a/frontend/src/scenes/error-tracking/errorTrackingGroupSceneLogic.ts b/frontend/src/scenes/error-tracking/errorTrackingGroupSceneLogic.ts
index 95490466861ea..1a7685e2ed1b9 100644
--- a/frontend/src/scenes/error-tracking/errorTrackingGroupSceneLogic.ts
+++ b/frontend/src/scenes/error-tracking/errorTrackingGroupSceneLogic.ts
@@ -14,7 +14,7 @@ export interface ErrorTrackingGroupSceneLogicProps {
id: string
}
-export type ExceptionEventType = Pick
+export type ExceptionEventType = Pick
export const errorTrackingGroupSceneLogic = kea([
path((key) => ['scenes', 'error-tracking', 'errorTrackingGroupSceneLogic', key]),
@@ -39,9 +39,10 @@ export const errorTrackingGroupSceneLogic = kea ({
- properties: JSON.parse(r[0]),
- timestamp: r[1],
- person: r[2],
+ id: r[0],
+ properties: JSON.parse(r[1]),
+ timestamp: r[2],
+ person: r[3],
}))
},
},
diff --git a/frontend/src/scenes/error-tracking/queries.ts b/frontend/src/scenes/error-tracking/queries.ts
index 5729c81a991d3..3502dabe8f901 100644
--- a/frontend/src/scenes/error-tracking/queries.ts
+++ b/frontend/src/scenes/error-tracking/queries.ts
@@ -54,7 +54,7 @@ export const errorTrackingGroupQuery = ({
}): EventsQuery => {
return {
kind: NodeKind.EventsQuery,
- select: ['properties', 'timestamp', 'person'],
+ select: ['uuid', 'properties', 'timestamp', 'person'],
where: [`properties.$exception_type = '${group}'`],
...defaultProperties({ dateRange, filterTestAccounts, filterGroup }),
}