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 29d130c05debc96e91472745d9fdea3fb759dab8 Author: Marat Gubaidullin <[email protected]> AuthorDate: Thu Apr 18 14:27:57 2024 -0400 Fix #1237 --- karavan-app/src/main/webui/package-lock.json | 2 +- karavan-app/src/main/webui/src/designer/route/DslConnections.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/karavan-app/src/main/webui/package-lock.json b/karavan-app/src/main/webui/package-lock.json index 08998ed0..7b3cfe36 100644 --- a/karavan-app/src/main/webui/package-lock.json +++ b/karavan-app/src/main/webui/package-lock.json @@ -77,7 +77,7 @@ } }, "../../../../karavan-core": { - "version": "4.5.0", + "version": "4.5.1", "license": "Apache-2.0", "dependencies": { "@types/js-yaml": "^4.0.7", diff --git a/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx b/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx index a711780b..1c0b284a 100644 --- a/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx +++ b/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx @@ -47,7 +47,7 @@ export function DslConnections() { setTons(prevState => { const data = new Map<string, string[]>(); TopologyUtils.findTopologyOutgoingNodes(integrations).forEach(t => { - const key = (t.step as any)?.uri + ':' + (t.step as any)?.parameters.name; + const key = (t.step as any)?.uri + ':' + (t.step as any)?.parameters?.name; if (data.has(key)) { const list = data.get(key) || []; list.push(t.routeId);
