Skip to content

Commit

Permalink
fixes #815
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Dec 10, 2013
1 parent 3aa9a92 commit 45c362c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions hawtio-web/src/main/webapp/app/wiki/js/camelCanvas.ts
Expand Up @@ -67,10 +67,12 @@ module Wiki {
}

$scope.updatePropertiesAndCloseDialog = () => {
console.log("old URI is " + $scope.nodeData.uri);
log.info("old URI is " + $scope.nodeData.uri);
var uri = createEndpointURI($scope.endpointScheme, ($scope.endpointPathHasSlashes ? "//" : ""), $scope.endpointPath, $scope.endpointParameters);
console.log("new URI is " + uri);
$scope.nodeData.uri = uri;
log.info("new URI is " + uri);
if (uri) {
$scope.nodeData.uri = uri;
}
var selectedFolder = $scope.selectedFolder;
if (selectedFolder) {
var nodeName = Camel.getFolderCamelNodeId(selectedFolder);
Expand Down

0 comments on commit 45c362c

Please sign in to comment.