diff options
author | Driptaroop Das <driptaroop.das@in.ibm.com> | 2019-01-21 13:13:21 +0530 |
---|---|---|
committer | Driptaroop Das <driptaroop.das@in.ibm.com> | 2019-01-21 13:13:35 +0530 |
commit | eb1659273043b496ed93dc369db1c9311ac0ca49 (patch) | |
tree | 06d7247315d923cb84c33a0f8eb4b0c3cf197dde | |
parent | 2a7168b9bd968191413140e8c2afd72d6f47a26b (diff) |
bug fix - unreachable code
bug fix - unreachable code.
Issue-ID: VID-390
Change-Id: I5e6cb45fed4cceb07d67ea22c011d329f1807678
Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
-rwxr-xr-x | vid-app-common/src/main/webapp/app/vid/scripts/directives/parameterBlockDirective.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/parameterBlockDirective.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/parameterBlockDirective.js index 32c34e9a6..2c5d3ae34 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/parameterBlockDirective.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/parameterBlockDirective.js @@ -3,6 +3,7 @@ * VID
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 IBM.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -164,7 +165,7 @@ var parameterBlockDirective = function($log, PARAMETER, UtilityService, $compile if (parameter.value) {
return "<select" + attributeString + " style='" + selectStyle
+ additionalStyle + "'>" + "<option value=true>true</option>"
- + "<option value=false>false</option>";
+ + "<option value=false>false</option>"
+ "</select>";
}else{
return "<select" + attributeString + " style='" + selectStyle
|