From 4f9ee574210914ce365febe7362a2e60fb33077e Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Fri, 17 Apr 2026 12:57:06 +0200 Subject: [PATCH] =?UTF-8?q?feat(ui):=20LogTab=20=E2=80=94=20surface=20sour?= =?UTF-8?q?ce=20badge=20on=20per-exchange=20log=20rows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/components/ExecutionDiagram/tabs/LogTab.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/components/ExecutionDiagram/tabs/LogTab.tsx b/ui/src/components/ExecutionDiagram/tabs/LogTab.tsx index 90d0b2c4..9d6605ee 100644 --- a/ui/src/components/ExecutionDiagram/tabs/LogTab.tsx +++ b/ui/src/components/ExecutionDiagram/tabs/LogTab.tsx @@ -57,6 +57,7 @@ export function LogTab({ applicationId, exchangeId, processorId }: LogTabProps) timestamp: e.timestamp ?? '', level: mapLogLevel(e.level), message: e.message ?? '', + source: e.source ?? undefined, })); }, [logPage, processorId, filter]);