From: anushadasari Date: Thu, 5 Sep 2019 16:06:09 +0000 (+0530) Subject: Add Semicolon at the end X-Git-Tag: 5.0.3~19^2~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=edba17cca34873f1bf4c722d28c05483466d3255;p=vid.git Add Semicolon at the end 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 --- diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js index 77bf9c806..3a7ef9e4d 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js @@ -30,5 +30,5 @@ appDS2.directive('serviceMetadata', function() { }, link : function(scope, element, attrs) { } - } + }; });