From 019c6c2bb8d80a3fcb2d4612b8dfec2a0242d0d0 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 23 Apr 2025 13:10:32 +0200 Subject: [PATCH] fix(ui): fix text overflow of drillodwn text --- .../components/WidgetSessions/WidgetSessions.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx b/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx index 965a515e2..48a81c87b 100644 --- a/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx +++ b/frontend/app/components/Dashboard/components/WidgetSessions/WidgetSessions.tsx @@ -11,7 +11,7 @@ import useIsMounted from 'App/hooks/useIsMounted'; import AnimatedSVG, {ICONS} from 'Shared/AnimatedSVG/AnimatedSVG'; import {numberWithCommas} from 'App/utils'; import {HEATMAP} from 'App/constants/card'; -import {Tag} from 'antd'; +import { Tag, Typography } from 'antd'; interface Props { className?: string; @@ -75,7 +75,7 @@ function WidgetSessions(props: Props) { setLoading(false); }); }; - + const fetchClickmapSessions = (customFilters: Record) => { sessionStore.getSessions(customFilters).then((data) => { setData([{...data, seriesId: 1, seriesName: 'Clicks'}]); @@ -148,7 +148,13 @@ function WidgetSessions(props: Props) { {hasFilters && widget.metricType === 'table' && -
{filterText}
} +
+ + + {filterText} + + +
}