Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add $el_text to taxonomy #18845

Merged
merged 3 commits into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions frontend/src/lib/taxonomy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,11 @@ export const KEY_MAPPING: KeyMappingInterface = {
label: 'GeoIP Disabled',
description: `Whether to skip GeoIP processing for the event.`,
},
$el_text: {
label: 'Element Text',
description: `The text of the element that was clicked. Only sent with Autocapture events.`,
examples: ['Click here!'],
},
// NOTE: This is a hack. $session_duration is a session property, not an event property
// but we don't do a good job of tracking property types, so making it a session property
// would require a large refactor, and this works (because all properties are treated as
Expand Down
Loading