From 9630f310d37a6fa5d8daa0b2a3f3c17d73a3894c Mon Sep 17 00:00:00 2001 From: Neil Kakkar Date: Fri, 23 Jul 2021 13:12:29 +0100 Subject: [PATCH] Show dropped off users in modal (#5315) --- .../insights/InsightTabs/FunnelTab/FunnelStepTable.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frontend/src/scenes/insights/InsightTabs/FunnelTab/FunnelStepTable.tsx b/frontend/src/scenes/insights/InsightTabs/FunnelTab/FunnelStepTable.tsx index c34f7e818be6a..6c4d51d87940c 100644 --- a/frontend/src/scenes/insights/InsightTabs/FunnelTab/FunnelStepTable.tsx +++ b/frontend/src/scenes/insights/InsightTabs/FunnelTab/FunnelStepTable.tsx @@ -95,11 +95,7 @@ export function FunnelStepTable({}: FunnelStepTableProps): JSX.Element | null { title: 'Dropped off', render: function RenderDropoff({}, step: FlattenedFunnelStep): JSX.Element | null { return step.order === 0 ? null : ( - - openPersonsModal(step, step.order + 1, step.breakdown) - } /* TODO: does this modal support dropped off users? */ - > + openPersonsModal(step, -(step.order + 1), step.breakdown)}> {step.droppedOffFromPrevious} )