diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-10-10 08:22:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-10 08:22:51 +0000 |
commit | 012975b2349ba5cc7c8434195b59459b8b0a0e89 (patch) | |
tree | caca5468c57dcd183cb92cb101c9fb12796bb592 /vid-app-common/src/main/webapp/app | |
parent | e02ffbb580a3a8049baae4437871129d6e37c91a (diff) | |
parent | 4c8c2ac1d29e19d1cb935749af0d1c0063d5c0fd (diff) |
Merge changes from topics "VID-30", "VID-37"
* changes:
Add the "@Override" annotation.
Replace "==" with "===".
Diffstat (limited to 'vid-app-common/src/main/webapp/app')
-rwxr-xr-x | vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js index b3afcd864..6d8dde844 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js @@ -35,7 +35,7 @@ $scope.properties = UtilityService.getProperties();
$scope.resumeStatus = COMPONENT.RESUME_STATUS;
//isPermitted - returned as string from url and converted into boolean
- $scope.isPermitted = $location.search().isPermitted == "true";
+ $scope.isPermitted = $location.search().isPermitted === "true";
$scope.STATUS_CONSTANTS = FIELD.STATUS;
$scope.pnfs = [];// PNF data init;
$scope.collectionResource = {};
|