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

Make Breakdown limit customizable and Allow empty breakdown value in trends and funnels #5357

Merged
merged 12 commits into from
Aug 3, 2021
Prev Previous commit
resolve merge conflicts
  • Loading branch information
neilkakkar committed Aug 2, 2021
commit 959dbd583278b8b5fdd85292047218b35b183a1d
1 change: 1 addition & 0 deletions frontend/src/scenes/funnels/funnelLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export const cleanFunnelParams = (filters: Partial<FilterType>, discardFiltersNo
...(filters.funnel_step_breakdown !== undefined
? { funnel_step_breakdown: filters.funnel_step_breakdown }
: {}),
...(filters.bin_count && filters.bin_count !== BinCountAuto ? { bin_count: filters.bin_count } : {}),
interval: autocorrectInterval(filters),
breakdown: breakdownEnabled ? filters.breakdown || undefined : undefined,
breakdown_type: breakdownEnabled ? filters.breakdown_type || undefined : undefined,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.