Skip to content

Commit

Permalink
feat(web-analytics): Add a setting to use the uniq_page_screen_autoca…
Browse files Browse the repository at this point in the history
…ptures mode (#24607)
  • Loading branch information
robbie-c authored Aug 27, 2024
1 parent b7105b6 commit f5b03ab
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/src/scenes/settings/project/BounceRatePageViewMode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ const bounceRatePageViewModeOptions: LemonRadioOption<BounceRatePageViewMode>[]
</>
),
},
{
value: 'uniq_page_screen_autocaptures',
label: (
<>
<div>Use uniqUpTo</div>
<div className="text-muted">
Uses the <code>uniqUpTo</code> function to count if the total unique pageviews + screen events +
autocaptures is &gte; 2
</div>
</>
),
},
]

export function BounceRatePageViewModeSetting(): JSX.Element {
Expand Down

0 comments on commit f5b03ab

Please sign in to comment.