diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-08-21 06:34:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-21 06:34:15 +0000 |
commit | 8af834cdee882fb2c7ff55626978f3df2e0e6004 (patch) | |
tree | 45b6f61e61d6529fa42df314c39ca10c1f1ac740 /epsdk-app-onap | |
parent | b63481896467e5c2a0e5a8df0f2e11e892774ef4 (diff) | |
parent | 6d53372256c01c3f0bf88cb95301322954e2471e (diff) |
Merge changes from topics "VID-580", "VID-579", "VID-578"
* changes:
unused import
Move the variable to comply with JCC.
semicolon at the end of this statement.
Diffstat (limited to 'epsdk-app-onap')
-rwxr-xr-x | epsdk-app-onap/src/main/webapp/app/fusion/external/ebz/angular_js/app.js | 4 |
1 files 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);
- })
+ });
});
|