Add a semicolon at the end of this statement
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / controller / testEnvironmentsController.js
index f5c3a0e..9448690 100644 (file)
@@ -1,3 +1,23 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * VID
+ * ================================================================================
+ * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
 (function () {
     'use strict';
 
@@ -53,7 +73,7 @@
                         _.find(relatedEcompEnv.relationshipData, {"relationshipKey": "operational-environment.operational-environment-id"})
                             .relationshipValue;
                     var relatedInstanceName =
-                        _.find(relatedEcompEnv.relatedToProperty, {"propertyKey": "operational-environment.operational-name"})
+                        _.find(relatedEcompEnv.relatedToProperty, {"propertyKey": "operational-environment.operational-environment-name"})
                             .propertyValue;
                     var workloadContext = testEnv.workloadContext;
 
         };
 
         vm.isEnvActive = function(testEnv) {
-            return testEnv.operationalEnvironmentStatus==='Activate';
+            return testEnv.operationalEnvironmentStatus==='ACTIVE';
         };
 
         vm.getEnvStatus = function (testEnv) {
-            return this.isEnvActive(testEnv) ? "Active" : "Inactive";
+            return testEnv.operationalEnvironmentStatus;
         };
 
         vm.createNewTestEnvironment = function() {
 
         init();
     }
-})();
\ No newline at end of file
+})();