remove empty uri on add
This commit is contained in:
parent
c0f38216ef
commit
db39d58ea8
|
@ -36,6 +36,11 @@
|
||||||
|
|
||||||
$scope.savePromise = null;
|
$scope.savePromise = null;
|
||||||
$scope.save = function () {
|
$scope.save = function () {
|
||||||
|
if ($scope.cipher.type === constants.cipherType.login && $scope.cipher.login.uris.length === 1 &&
|
||||||
|
($scope.cipher.login.uris[0].uri == null || $scope.cipher.login.uris[0].uri === '')) {
|
||||||
|
$scope.cipher.login.uris = null;
|
||||||
|
}
|
||||||
|
|
||||||
var cipher = cipherService.encryptCipher($scope.cipher);
|
var cipher = cipherService.encryptCipher($scope.cipher);
|
||||||
$scope.savePromise = apiService.ciphers.post(cipher, function (cipherResponse) {
|
$scope.savePromise = apiService.ciphers.post(cipher, function (cipherResponse) {
|
||||||
$analytics.eventTrack('Created Cipher');
|
$analytics.eventTrack('Created Cipher');
|
||||||
|
|
Loading…
Reference in New Issue