aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranushadasari <danush10@in.ibm.com>2019-08-28 11:53:15 +0530
committerIttay Stern <ittay.stern@att.com>2019-08-29 12:14:48 +0000
commitbdd1d2c30961d6b7e3e8777e3659dce7d32da61f (patch)
tree2436f540e843f9a78cfdf845d8eecb3bc843018e
parente7dfb1fd34541e56b70c6d57a9c04c3883615b11 (diff)
Add a semicolon at the end of this statement
In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line. Issue-ID: VID-597 Change-Id: I4d324d96d28a3796b971b83997d72a64ed161ce8 Signed-off-by: anushadasari <danush10@in.ibm.com>
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/constants/fieldConstants.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/constants/fieldConstants.js b/vid-app-common/src/main/webapp/app/vid/scripts/constants/fieldConstants.js
index a46013010..eb4464763 100755
--- a/vid-app-common/src/main/webapp/app/vid/scripts/constants/fieldConstants.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/constants/fieldConstants.js
@@ -295,7 +295,7 @@ appDS2.factory("FIELD", ["PARAMETER", function (PARAMETER) {
PRIMARY: "primary",
PROGRESS_BAR_INFO: "progress-bar progress-bar-info",
PROGRESS_BAR_SUCCESS: "progress-bar progress-bar-success",
- }
+ };
var ERROR = {
AAI: "A&AI failure - see log below for details",
@@ -322,7 +322,7 @@ appDS2.factory("FIELD", ["PARAMETER", function (PARAMETER) {
INVALID_DATA_FORMAT: 'Invalid data format.Please check your file content whether it is not in json or not.',
MISSING_FILE: 'Please Select JSON File.',
- }
+ };
/*
* PARAMETER values indicate field configurations that are provided to
@@ -512,5 +512,5 @@ appDS2.factory("FIELD", ["PARAMETER", function (PARAMETER) {
STATUS: STATUS,
STYLE: STYLE,
ERROR: ERROR
- }
+ };
}]);