Merge pull request #3402 from AlexSCorey/3238-addFirstNameLastNameonUsersTeamList

add first name and last name to the headers row of the teams users list

Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-03-11 20:25:36 +00:00 committed by GitHub
commit c3ae700888
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,13 +95,21 @@ export default ['i18n', function(i18n) {
key: true,
label: i18n._('User'),
linkBase: 'users',
columnClass: 'col-sm-6'
columnClass: 'col-sm-3'
},
first_name: {
label: i18n._('First Name'),
columnClass: 'col-sm-3'
},
last_name: {
label: i18n._('Last Name'),
columnClass: 'col-sm-3'
},
role: {
label: i18n._('Role'),
type: 'role',
nosort: true,
columnClass: 'col-sm-6'
columnClass: 'col-sm-3'
}
}
},