This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git

commit 3f93ac0ce451aea7b371c880897d19f1318df82a
Author: Marat Gubaidullin <marat.gubaidul...@gmail.com>
AuthorDate: Thu Aug 10 10:41:49 2023 -0400

    Fix #837
---
 .../src/main/webui/src/project/trace/RunnerInfoTraceNode.tsx            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/karavan-web/karavan-app/src/main/webui/src/project/trace/RunnerInfoTraceNode.tsx
 
b/karavan-web/karavan-app/src/main/webui/src/project/trace/RunnerInfoTraceNode.tsx
index 975d7df5..90d71de6 100644
--- 
a/karavan-web/karavan-app/src/main/webui/src/project/trace/RunnerInfoTraceNode.tsx
+++ 
b/karavan-web/karavan-app/src/main/webui/src/project/trace/RunnerInfoTraceNode.tsx
@@ -32,7 +32,7 @@ export const RunnerInfoTraceNode = (props: Props) => {
 
     const type = props.trace?.message?.body?.type;
     const body = props.trace?.message?.body?.value;
-    const headers: any[] = [{key: "header1", type: "java.lang.String", value: 
"value1"}, {key: "header2", type: "java.lang.String", value: "value2"}];
+    const headers: any[] = [...props.trace?.message?.headers];
     return (
         <Panel isScrollable>
                 <PanelMain tabIndex={0}>

Reply via email to