From 2e80852e39c4ede75203910ae5b0f289b0ecb46c Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Tue, 31 Jan 2023 16:11:40 +0100 Subject: [PATCH] fix(ui) - table drilldown dates --- .../components/Dashboard/components/WidgetChart/WidgetChart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx b/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx index 805c6b9c5..d4ed53324 100644 --- a/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx +++ b/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx @@ -50,7 +50,7 @@ function WidgetChart(props: Props) { const onChartClick = (event: any) => { if (event) { if (isTableWidget || isPieChart) { // get the filter of clicked row - const periodTimestamps = period.toTimestamps() + const periodTimestamps = drillDownPeriod.toTimestamps() drillDownFilter.merge({ filters: event, startTimestamp: periodTimestamps.startTimestamp,