mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 20:30:46 -03:30
make first and last name optional
This commit is contained in:
parent
831e79ff17
commit
32f0e54666
@ -29,14 +29,14 @@ export default ['i18n', function(i18n) {
|
||||
label: i18n._('First Name'),
|
||||
type: 'text',
|
||||
ngDisabled: '!(user_obj.summary_fields.user_capabilities.edit || canAdd)',
|
||||
required: true,
|
||||
required: false,
|
||||
capitalize: true
|
||||
},
|
||||
last_name: {
|
||||
label: i18n._('Last Name'),
|
||||
type: 'text',
|
||||
ngDisabled: '!(user_obj.summary_fields.user_capabilities.edit || canAdd)',
|
||||
required: true
|
||||
required: false,
|
||||
},
|
||||
organization: {
|
||||
label: i18n._('Organization'),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user