Skip to content

Commit

Permalink
Fix recording page refresh loop (#8685)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmarron authored Feb 18, 2022
1 parent 15ce33e commit 8ffcce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/persons/Person.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export function Person({ _: urlId }: { _?: string } = {}): JSX.Element | null {
key={PersonsTabType.SESSION_RECORDINGS}
>
<SessionRecordingsTable
key={person.distinct_ids.join('__')} // force refresh if distinct_ids change
key={person.uuid} // force refresh if user changes
personUUID={person.uuid}
isPersonPage
/>
Expand Down

0 comments on commit 8ffcce1

Please sign in to comment.