From da5ff5908120fddde7ee1eb42430cf37fad82e71 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Thu, 15 Dec 2016 16:08:03 -0500 Subject: [PATCH] Removed extra appendage of id to the edit user url --- awx/ui/client/src/controllers/Users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/controllers/Users.js b/awx/ui/client/src/controllers/Users.js index 9aade4fbf8..9a0aa2ea76 100644 --- a/awx/ui/client/src/controllers/Users.js +++ b/awx/ui/client/src/controllers/Users.js @@ -311,7 +311,7 @@ export function UsersEdit($scope, $rootScope, $location, $scope.formSave = function() { $rootScope.flashMessage = null; if ($scope[form.name + '_form'].$valid) { - Rest.setUrl(defaultUrl + id + '/'); + Rest.setUrl(defaultUrl + '/'); var data = processNewData(form.fields); Rest.put(data).success(function() { $state.go($state.current, null, { reload: true });