diff options
author | anushadasari <danush10@in.ibm.com> | 2019-09-05 21:36:09 +0530 |
---|---|---|
committer | anushadasari <danush10@in.ibm.com> | 2019-09-05 21:37:23 +0530 |
commit | edba17cca34873f1bf4c722d28c05483466d3255 (patch) | |
tree | 6a04a2240d14bd55ed72d8ef7b5831311024ad9d /vid-app-common/src/main | |
parent | 13b9eaae1fc3b40daae686504b8b2dc706703006 (diff) |
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 <danush10@in.ibm.com>
Diffstat (limited to 'vid-app-common/src/main')
-rw-r--r-- | vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) { } - } + }; }); |