diff --git a/frontend/src/scenes/session-recordings/player/inspector/components/SimpleKeyValueList.tsx b/frontend/src/scenes/session-recordings/player/inspector/components/SimpleKeyValueList.tsx index 7b183948b67d3..d189c99e779b0 100644 --- a/frontend/src/scenes/session-recordings/player/inspector/components/SimpleKeyValueList.tsx +++ b/frontend/src/scenes/session-recordings/player/inspector/components/SimpleKeyValueList.tsx @@ -1,5 +1,7 @@ // A React component that renders a list of key-value pairs in a simple way. +import { PropertyKeyInfo } from 'lib/components/PropertyKeyInfo' + export interface SimpleKeyValueListProps { item: Record } @@ -9,7 +11,9 @@ export function SimpleKeyValueList({ item }: SimpleKeyValueListProps): JSX.Eleme
{Object.entries(item).map(([key, value]) => (
- {key} + + +
{JSON.stringify(value, null, 2)}
))}