From a062c0d773fef4b8a98e5950bb342d0044d95d63 Mon Sep 17 00:00:00 2001 From: olehp Date: Mon, 12 Feb 2024 09:50:52 +0200 Subject: [PATCH] fix selection of trace --- src/components/RecentActivity/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/RecentActivity/index.tsx b/src/components/RecentActivity/index.tsx index 1c4ab8391..9a15ed597 100644 --- a/src/components/RecentActivity/index.tsx +++ b/src/components/RecentActivity/index.tsx @@ -209,7 +209,10 @@ export const RecentActivity = (props: RecentActivityProps) => { action: actions.GO_TO_TRACE, payload: { traceId, - span + span: { + scopeId: span.scopeId, + displayText: span.displayText + } } }); };