removed cached vault from vaultservice

Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
fnuesse 2019-05-19 16:52:50 +02:00
parent 6540b65acb
commit 67182b75b5
No known key found for this signature in database
GPG key ID: 2089A3431243E819
2 changed files with 6 additions and 2 deletions

View file

@ -540,8 +540,9 @@
}
$scope.active_vault = null;
$scope.credentials = [];
// $scope.$parent.selectedVault = false;
window.location.reload();
//$scope.$parent.selectedVault = false;
//window.location.reload();
VaultService.clearVaultService();
});

View file

@ -131,6 +131,9 @@
return response;
}
});
},
clearVaultService: function () {
_activeVault=null;
}
};