mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 06:01:25 -03:30
Machine Credential username/password
changed username/password for machine credential to NOT include 'SSH'
This commit is contained in:
parent
34afc9cd02
commit
b5929a232a
@ -246,7 +246,7 @@ angular.module('CredentialFormDefinition', [])
|
||||
}
|
||||
},
|
||||
"ssh_password": {
|
||||
label: 'SSH Password',
|
||||
label: 'Password', // formally 'SSH Password'
|
||||
type: 'password',
|
||||
ngShow: "kind.value == 'ssh'",
|
||||
ngChange: "clearPWConfirm('ssh_password_confirm')",
|
||||
@ -258,7 +258,7 @@ angular.module('CredentialFormDefinition', [])
|
||||
autocomplete: false
|
||||
},
|
||||
"ssh_password_confirm": {
|
||||
label: 'Confirm SSH Password',
|
||||
label: 'Confirm Password', // formally 'Confirm SSH password'
|
||||
type: 'password',
|
||||
ngShow: "kind.value == 'ssh'",
|
||||
addRequired: false,
|
||||
|
||||
@ -57,7 +57,7 @@ angular.module('CredentialsHelper', ['Utilities'])
|
||||
scope.username_required = true;
|
||||
break;
|
||||
case 'ssh':
|
||||
scope.usernameLabel = 'SSH Username';
|
||||
scope.usernameLabel = 'Username'; //formally 'SSH Username'
|
||||
break;
|
||||
case 'scm':
|
||||
scope.sshKeyDataLabel = 'SCM Private Key';
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user