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/04/07 17:46:15 UTC

[camel-karavan] branch main updated: Fix #288 (#289)

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 4714eef  Fix #288 (#289)
4714eef is described below

commit 4714eefba198cdd34c004f1e5b0bb11082bae195
Author: cgballance <cg...@gmail.com>
AuthorDate: Thu Apr 7 13:46:11 2022 -0400

    Fix #288 (#289)
---
 karavan-designer/src/designer/route/RouteDesigner.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/karavan-designer/src/designer/route/RouteDesigner.tsx b/karavan-designer/src/designer/route/RouteDesigner.tsx
index 98b0bb6..726d501 100644
--- a/karavan-designer/src/designer/route/RouteDesigner.tsx
+++ b/karavan-designer/src/designer/route/RouteDesigner.tsx
@@ -166,9 +166,9 @@ export class RouteDesigner extends React.Component<Props, State> {
             }
             message = 'Deleting the first element will delete the entire route!' ;
          } else if( ce.dslName === 'RouteDefinition' ) {
-            message = 'Delete integration?' ;
+            message = 'Delete route?' ;
          } else {
-            message = 'Delete element from integration?';
+            message = 'Delete element from route?';
          }
         this.setState({selectedUuid: id, showSelector: false, showDeleteConfirmation: true, deleteMessage: message});
     }