Add a semicolon at the end of this statement. 64/95564/2
authoranushadasari <danush10@in.ibm.com>
Thu, 12 Sep 2019 11:04:16 +0000 (16:34 +0530)
committerIttay Stern <ittay.stern@att.com>
Tue, 24 Sep 2019 16:36:57 +0000 (16:36 +0000)
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: Ibf05db5e76be01c78cfac8196fcf4bb09dfa7709
Signed-off-by: anushadasari <danush10@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js

index de5e9c0..a2e20e4 100755 (executable)
@@ -113,8 +113,8 @@ var DetailsService = function ($log, DataService, ComponentService, COMPONENT,
         getSummaryList: getSummaryList,\r
         getDetailsList: getDetailsList,\r
         getMsoFilterString: getMsoFilterString\r
-    }\r
-}\r
+    };\r
+};\r
 \r
 appDS2.factory("DetailsService", ["$log", "DataService", "ComponentService",\r
     "COMPONENT", "FIELD", "UtilityService", DetailsService]);\r