From e8432e2deceae099e485aa1a9ba92c50cfa672cf Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 23 Apr 2025 17:50:39 +0200 Subject: [PATCH] change(ui): force the table cards events order to use and istead the defaul then --- .../components/Dashboard/components/WidgetView/WidgetView.tsx | 3 +++ 1 file changed, 3 insertions(+) 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()];