1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 00:55:06 +03:00

add org name to user team search columns

This commit is contained in:
Keith Grant 2020-06-02 09:13:42 -07:00
parent 75fd703530
commit 8cdb05e4a2

View File

@ -63,6 +63,17 @@ function UserTeamList({ i18n }) {
isSelected={false}
/>
)}
toolbarSearchColumns={[
{
name: i18n._(t`Name`),
key: 'name',
isDefault: true,
},
{
name: i18n._(t`Organization`),
key: 'organization__name',
},
]}
/>
);
}