From ed321cd4b767a3e3e00528b29db4e51c0992d99b Mon Sep 17 00:00:00 2001 From: anushadasari Date: Tue, 20 Aug 2019 13:29:19 +0530 Subject: [PATCH] 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. Change-Id: Ia09e1bb1894da379f68cc39e83f955e66b957511 Issue-ID: VID-578 Signed-off-by: anushadasari --- .../src/main/webapp/app/fusion/external/ebz/angular_js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epsdk-app-onap/src/main/webapp/app/fusion/external/ebz/angular_js/app.js b/epsdk-app-onap/src/main/webapp/app/fusion/external/ebz/angular_js/app.js index 416dc3272..cb74a6689 100755 --- a/epsdk-app-onap/src/main/webapp/app/fusion/external/ebz/angular_js/app.js +++ b/epsdk-app-onap/src/main/webapp/app/fusion/external/ebz/angular_js/app.js @@ -7,8 +7,8 @@ app.run(function(featureFlags, $http) { $http.get('flags').then(function (results) { var flags = []; for (var key in results.data) { - flags.push({"key":key, "active":results.data[key]}) + flags.push({"key":key, "active":results.data[key]}); } featureFlags.set(flags); - }) + }); }); -- 2.16.6