Skip to content

Commit

Permalink
not python :)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra authored Oct 16, 2024
1 parent 64f0239 commit afb49bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/activity/explore/EventDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function EventDetails({ event, tableProps }: EventDetailsProps): JSX.Elem
}
}
if (!CORE_FILTER_DEFINITIONS_BY_GROUP.events[key] || !CORE_FILTER_DEFINITIONS_BY_GROUP.events[key].system) {
if (key.startsWith('$feature') or key === '$active_feature_flags') {
if (key.startsWith('$feature') || key === '$active_feature_flags') {
featureFlagProperties[key] = event.properties[key]
} else {
displayedEventProperties[key] = event.properties[key]
Expand Down

0 comments on commit afb49bd

Please sign in to comment.