From 5afad675ca16f2730806ae7fcb494e2fa28aecfa Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Mon, 23 Jan 2023 12:12:13 +0100 Subject: [PATCH] fix(ui) - card drilldown --- .../Dashboard/components/WidgetSessions/WidgetSessions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx b/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx index 79f42612c..c62671944 100644 --- a/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx +++ b/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx @@ -83,7 +83,7 @@ function WidgetSessions(props: Props) { } else { debounceRequest(widget.metricId, { ...filter, - series: widget.series, + series: widget.series.map(s => s.toJson()), page: metricStore.sessionsPage, limit: metricStore.sessionsPageSize, });