From 4f68c5a8cca4c7d8f3fb38e32460925f27a03262 Mon Sep 17 00:00:00 2001 From: anushadasari Date: Thu, 12 Sep 2019 16:34:16 +0530 Subject: 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 --- .../src/main/webapp/app/vid/scripts/services/detailsService.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vid-app-common/src/main/webapp/app') 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]); -- cgit 1.2.3-korg