From: Ittay Stern Date: Tue, 10 Sep 2019 13:03:50 +0000 (+0000) Subject: Merge changes from topics "VID-11", "VID-10", "VID-9" X-Git-Tag: 5.0.3~19 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=1b4336d9c26c4febe86036900bfa7994c0fadca5;hp=90cbfcabf6a73c466d3284191f2e2b6a472b41b6;p=vid.git 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 --- 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"; } } };