From 05261c84558997a9fb79fa09edef13b2cb73b23d Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 17 Mar 2014 14:59:40 -0400 Subject: [PATCH] New API is more strict on the fields being present in change user information, so we have to delete them, not merely set them to empty strings --- static/js/controllers.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/static/js/controllers.js b/static/js/controllers.js index d2e76dac7..114118274 100644 --- a/static/js/controllers.js +++ b/static/js/controllers.js @@ -1712,7 +1712,8 @@ function UserAdminCtrl($scope, $timeout, $location, ApiService, PlanService, Use $scope.sentEmail = $scope.cuser.email; // Reset the form. - $scope.cuser.repeatEmail = ''; + delete $scope.cuser['repeatEmail']; + $scope.changeEmailForm.$setPristine(); }, function(result) { $scope.updatingUser = false; @@ -1734,8 +1735,9 @@ function UserAdminCtrl($scope, $timeout, $location, ApiService, PlanService, Use $scope.changePasswordSuccess = true; // Reset the form - $scope.cuser.password = ''; - $scope.cuser.repeatPassword = ''; + delete $scope.cuser['password'] + delete $scope.cuser['repeatPassword'] + $scope.changePasswordForm.$setPristine(); // Reload the user.