Fix check

This commit is contained in:
brantje 2017-04-20 18:35:54 +02:00
parent e4179d43f5
commit be465e56bd
No known key found for this signature in database
GPG key ID: 5FF1D117F918687F

View file

@ -299,8 +299,8 @@
$scope.storedCredential.custom_fields.push(angular.copy($scope.new_custom_field));
}
if ($scope.storedCredential.password !== storedCredential.password_repeat){
console.log($scope.storedCredential.password, $scope.storedCredential.password_repeat)
if ($scope.storedCredential.password !== $scope.storedCredential.password_repeat){
NotificationService.showNotification($translate.instant('password.do.not.match'), 5000);
return;
}