bug fix - unreachable code 53/76053/1
authorDriptaroop Das <driptaroop.das@in.ibm.com>
Mon, 21 Jan 2019 07:43:21 +0000 (13:13 +0530)
committerDriptaroop Das <driptaroop.das@in.ibm.com>
Mon, 21 Jan 2019 07:43:35 +0000 (13:13 +0530)
bug fix - unreachable code.

Issue-ID: VID-390
Change-Id: I5e6cb45fed4cceb07d67ea22c011d329f1807678
Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/directives/parameterBlockDirective.js

index 32c34e9..2c5d3ae 100755 (executable)
@@ -3,6 +3,7 @@
  * VID\r
  * ================================================================================\r
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
+ * Modifications Copyright (C) 2019 IBM.\r
  * ================================================================================\r
  * Licensed under the Apache License, Version 2.0 (the "License");\r
  * you may not use this file except in compliance with the License.\r
@@ -164,7 +165,7 @@ var parameterBlockDirective = function($log, PARAMETER, UtilityService, $compile
                 if (parameter.value) {\r
                     return "<select" + attributeString + " style='" + selectStyle\r
                         + additionalStyle + "'>" + "<option value=true>true</option>"\r
-                        + "<option value=false>false</option>";\r
+                        + "<option value=false>false</option>"\r
                     + "</select>";\r
                 }else{\r
                     return "<select" + attributeString + " style='" + selectStyle\r