Skip to content

Commit

Permalink
fix: Fix Stickiness Actors (#22210)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspicer committed May 9, 2024
1 parent 11ac42d commit 2acdd4e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions frontend/src/scenes/trends/viz/ActionsLineGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,13 @@ export function ActionsLineGraph({
openPersonsModal({
title,
query: datasetToActorsQuery({ dataset, query: query.source, day }),
additionalSelect: isLifecycle
? {}
: {
value_at_data_point: 'event_count',
matched_recordings: 'matched_recordings',
},
additionalSelect:
isLifecycle || isStickiness
? {}
: {
value_at_data_point: 'event_count',
matched_recordings: 'matched_recordings',
},
})
} else {
const datasetUrls = urlsForDatasets(
Expand Down

0 comments on commit 2acdd4e

Please sign in to comment.