diff --git a/frontend/app/components/Dashboard/components/WidgetView/WidgetView.tsx b/frontend/app/components/Dashboard/components/WidgetView/WidgetView.tsx index f066c1661..d59e4e32a 100644 --- a/frontend/app/components/Dashboard/components/WidgetView/WidgetView.tsx +++ b/frontend/app/components/Dashboard/components/WidgetView/WidgetView.tsx @@ -92,6 +92,9 @@ function WidgetView({ filter: { filters: selectedCard.filters }, }), ]; + } else if (selectedCard.cardType === TABLE) { + cardData.series = [new FilterSeries()]; + cardData.series[0].filter.eventsOrder = 'and'; } if (selectedCard.cardType === FUNNEL) { cardData.series = [new FilterSeries()];