Skip to content

Commit

Permalink
tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Oct 24, 2024
1 parent 05e3fca commit c9843c4
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { PersonDisplay } from '@posthog/apps-common'
import { IconInfo } from '@posthog/icons'
import { useValues } from 'kea'
import { PropertiesTable } from 'lib/components/PropertiesTable'
import { LemonSkeleton } from 'lib/lemon-ui/LemonSkeleton'
import { Tooltip } from 'lib/lemon-ui/Tooltip'
import { PlayerSidebarSessionSummary } from 'scenes/session-recordings/player/sidebar/PlayerSidebarSessionSummary'

import { PropertyDefinitionType } from '~/types'
Expand All @@ -19,7 +21,11 @@ export function PlayerSidebarOverviewTab(): JSX.Element {
<PlayerSidebarOverviewGrid />
<PlayerSidebarSessionSummary />
<div className="font-bold bg-bg-light px-2 border-b py-3">
<h2>Latest person properties</h2>
<Tooltip title="These are the person properties right now. They might have changed and not match the person properties at the time of recording.">
<h2>
Latest person properties <IconInfo />
</h2>
</Tooltip>
<PersonDisplay person={sessionPerson} withIcon noPopover />
</div>
{sessionPlayerMetaDataLoading ? (
Expand Down

0 comments on commit c9843c4

Please sign in to comment.