From d5d3495494d65a19fce15de969edde53eaab3320 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Wed, 13 Nov 2013 17:11:15 +0000 Subject: [PATCH] Found and fixed another bug on the Credentials form. Changing the ssh password value was causing a hidden password field to become invalid. Form definition for ssh password cleared the incorrect associated confirmation field. --- awx/ui/static/js/forms/Credentials.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/forms/Credentials.js b/awx/ui/static/js/forms/Credentials.js index 75d13fdd64..90f018cebd 100644 --- a/awx/ui/static/js/forms/Credentials.js +++ b/awx/ui/static/js/forms/Credentials.js @@ -139,7 +139,7 @@ angular.module('CredentialFormDefinition', []) label: 'SSH Password', type: 'password', ngShow: "kind.value == 'ssh'", - ngChange: "clearPWConfirm('password_confirm')", + ngChange: "clearPWConfirm('ssh_password_confirm')", addRequired: false, editRequired: false, ask: true,