aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app
diff options
context:
space:
mode:
authoranushadasari <danush10@in.ibm.com>2019-09-11 11:37:12 +0530
committerIttay Stern <ittay.stern@att.com>2019-09-24 16:33:24 +0000
commitc6de597cf45091ee005f0a4ff14db8339ceaa1e0 (patch)
treeefa0b9b63e87d66f9e7d3dca243e12aa56d5bf0a /vid-app-common/src/main/webapp/app
parentcd0f196cbc07d250370e73825298afea8a3d7d3a (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-607 Change-Id: I6798e2fbf4439e5336e1af734aa762449454f04f Signed-off-by: anushadasari <danush10@in.ibm.com>
Diffstat (limited to 'vid-app-common/src/main/webapp/app')
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/services/componentService.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/componentService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/componentService.js
index 0bc8f0b57..251aeef07 100755
--- a/vid-app-common/src/main/webapp/app/vid/scripts/services/componentService.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/componentService.js
@@ -177,8 +177,8 @@ var ComponentService = function($log, COMPONENT, UtilityService) {
getFieldDisplayName : function(name) {
return getDisplayName(name);
}
- }
-}
+ };
+};
appDS2.factory("ComponentService", [ "$log", "COMPONENT", "UtilityService",
ComponentService ]);