diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-09-10 13:03:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-10 13:03:50 +0000 |
commit | 1b4336d9c26c4febe86036900bfa7994c0fadca5 (patch) | |
tree | 94fd0e8af79201e9ed390652bc6d66d168b9f353 /vid-app-common/src | |
parent | 90cbfcabf6a73c466d3284191f2e2b6a472b41b6 (diff) | |
parent | 7d1312cd686dd7178d9fb9ae620aa98104e2fded (diff) |
Merge changes from topics "VID-11", "VID-10", "VID-9"
* changes:
Add Semicolon at the end
Add Semicolon at the end
Add Semicolon at the end
Diffstat (limited to 'vid-app-common/src')
3 files changed, 5 insertions, 5 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js index e127d5d74..93323d911 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js @@ -27,5 +27,5 @@ appDS2.directive('searchText', function() { scope: { searchString : '=' } - } + }; }); 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) { } - } + }; }); diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js b/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js index 15c57f756..bcac579f3 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js @@ -31,11 +31,11 @@ vm.content = jobInfo.message; vm.mode = jobInfo.status; if (vm.mode == "failed") { - vm.Header = "Failed" + vm.Header = "Failed"; } else if (vm.mode == "confirm") { - vm.Header = "Confirm" + vm.Header = "Confirm"; } else { - vm.Header = "Success" + vm.Header = "Success"; } } }; |