From: anushadasari Date: Thu, 12 Sep 2019 11:04:16 +0000 (+0530) Subject: Add a semicolon at the end of this statement. X-Git-Tag: 6.0.1~281 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=4f68c5a8cca4c7d8f3fb38e32460925f27a03262;p=vid.git 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: Ibf05db5e76be01c78cfac8196fcf4bb09dfa7709 Signed-off-by: anushadasari --- diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js index de5e9c007..a2e20e4a2 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js @@ -113,8 +113,8 @@ var DetailsService = function ($log, DataService, ComponentService, COMPONENT, getSummaryList: getSummaryList, getDetailsList: getDetailsList, getMsoFilterString: getMsoFilterString - } -} + }; +}; appDS2.factory("DetailsService", ["$log", "DataService", "ComponentService", "COMPONENT", "FIELD", "UtilityService", DetailsService]);