From 6873f1c56b6892d23e51067ac75a49860f5c28f4 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Wed, 26 Feb 2025 17:33:13 +0100 Subject: [PATCH] ui: fix funnel wording --- .../app/components/Funnels/FunnelWidget/FunnelWidget.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx b/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx index 3a4365876..e57835d8a 100644 --- a/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx +++ b/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx @@ -88,13 +88,16 @@ function FunnelWidget(props: Props) { const viewType = metric?.viewType; const isHorizontal = viewType === 'columnChart'; const noEvents = metric.series[0].filter.filters.length === 0; + const isUsers = metric?.metricFormat === 'userCount'; return ( - {noEvents ? 'Select an event to start seeing the funnel' : 'No data available for the selected period.'} + {noEvents + ? 'Select an event to start seeing the funnel' + : 'No data available for the selected period.'} } show={!stages || stages.length === 0} @@ -142,7 +145,7 @@ function FunnelWidget(props: Props) {
Total conversion