Add Semicolon at the end 62/95062/1
authoranushadasari <danush10@in.ibm.com>
Thu, 5 Sep 2019 16:01:53 +0000 (21:31 +0530)
committeranushadasari <danush10@in.ibm.com>
Thu, 5 Sep 2019 16:03:18 +0000 (21:33 +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 lin

Issue-ID: VID-607
Change-Id: Ibde377c9a1f4fe473d8f2c0542657888cfbd44c5
Signed-off-by: anushadasari <danush10@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js

index e127d5d..93323d9 100644 (file)
@@ -27,5 +27,5 @@ appDS2.directive('searchText', function() {
         scope: {
             searchString : '='
         }
-    }
+    };
 });