You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2022/03/22 17:14:28 UTC

[camel-karavan] branch main updated: Update RouteDesigner.tsx

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


The following commit(s) were added to refs/heads/main by this push:
     new 5115f94  Update RouteDesigner.tsx
5115f94 is described below

commit 5115f941e89feea8a5ca595bd8428697f020cecd
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Tue Mar 22 13:14:25 2022 -0400

    Update RouteDesigner.tsx
---
 karavan-designer/src/designer/route/RouteDesigner.tsx | 1 -
 1 file changed, 1 deletion(-)

diff --git a/karavan-designer/src/designer/route/RouteDesigner.tsx b/karavan-designer/src/designer/route/RouteDesigner.tsx
index 941dd86..aa5c31b 100644
--- a/karavan-designer/src/designer/route/RouteDesigner.tsx
+++ b/karavan-designer/src/designer/route/RouteDesigner.tsx
@@ -88,7 +88,6 @@ export class RouteDesigner extends React.Component<Props, State> {
 
     componentDidUpdate = (prevProps: Readonly<Props>, prevState: Readonly<State>, snapshot?: any) => {
         if (prevState.key !== this.state.key) {
-            console.log(this.state.integration.spec.flows)
             this.props.onSave?.call(this, this.state.integration);
         }
     }