Merge "Fix resmgr NE create failed issue"
diff --git a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js
index 66034b9..bfc8833 100644
--- a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js
+++ b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js
@@ -659,8 +659,9 @@
 

     /*-------------------------------------------------------------------------------OverlayVPN---------------------------------------------------------------------*/

 

-    .controller("overlayVPNCtrl", function($scope, $rootScope, $compile, DataService, NgTableParams){

+    .controller("overlayVPNCtrl", function($scope, $rootScope, $stateParams, $compile, DataService, NgTableParams){

         $scope.message = "Overlay VPN";

+        console.log("Service Id: "+ $stateParams.id);

 

         $scope.init = function() {

             //console.log("Overlay VPN... ng-init + " +  $rootScope.lcmModelTemplate);

@@ -712,8 +713,9 @@
 

     /*-------------------------------------------------------------------------------UnderlayVPN---------------------------------------------------------------------*/

 

-    .controller("underlayVPNCtrl", function($scope, $rootScope, $compile, DataService, NgTableParams){

+    .controller("underlayVPNCtrl", function($scope, $rootScope, $stateParams, $compile, DataService, NgTableParams){

         $scope.message = "Underlay VPN";

+        console.log("Service Id: "+ $stateParams.id);

         $scope.tpTableShowing = false;

 

         $scope.init = function() {