diff options
author | Ofir Sonsino <os0695@att.com> | 2017-10-25 14:39:13 +0300 |
---|---|---|
committer | Ofir Sonsino <os0695@att.com> | 2017-10-25 14:39:13 +0300 |
commit | 433ad14a2a4464ebd4e597a2df8be370888f1a1c (patch) | |
tree | be36563b3efb026c2e45e27b24befe2248d5a876 | |
parent | 53b277a7e46cde80cd381311932cd4f0d432cbfc (diff) |
Fix error msg for AAI query
Change-Id: I2db2402a2110ecccc7be4d26d4397ea64d0a8e6d
Issue-Id: VID-79
Signed-off-by: Ofir Sonsino <os0695@att.com>
-rwxr-xr-x | vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js index 74f7471d4..a86c1b1b4 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js @@ -172,7 +172,7 @@ appDS2.controller("aaiSubscriberController", ["COMPONENT", "FIELD", "PARAMETER", $scope.isSpinnerVisible = false;
$scope.isProgressVisible = false;
} else {
- $scope.status = "Failed to get service models from ASDC.";
+ $scope.status = "Failed to get service models from A&AI.";
$scope.error = true;
$scope.isSpinnerVisible = false;
}
|