Add Semicolon at the end 63/95063/1
authoranushadasari <danush10@in.ibm.com>
Thu, 5 Sep 2019 16:06:09 +0000 (21:36 +0530)
committeranushadasari <danush10@in.ibm.com>
Thu, 5 Sep 2019 16:07:23 +0000 (21:37 +0530)
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: Icdfa98d7f67fbf3b21cba97b0013f0181ed34675
Signed-off-by: anushadasari <danush10@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js

index 77bf9c8..3a7ef9e 100644 (file)
@@ -30,5 +30,5 @@ appDS2.directive('serviceMetadata', function() {
         },
         link : function(scope, element, attrs) {
         }
-    }
+    };
 });