mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 13:11:19 -03:30
Adds bold to some list items that were missed during conversion to tables
This commit is contained in:
parent
1d6579e110
commit
2c82d32720
@ -57,10 +57,10 @@ function ResourceAccessListItem({ accessRecord, onRoleDelete }) {
|
||||
<Td id={`access-record-${accessRecord.id}`} dataLabel={t`Name`}>
|
||||
{accessRecord.id ? (
|
||||
<Link to={{ pathname: `/users/${accessRecord.id}/details` }}>
|
||||
{accessRecord.username}
|
||||
<b>{accessRecord.username}</b>
|
||||
</Link>
|
||||
) : (
|
||||
accessRecord.username
|
||||
<b>{accessRecord.username}</b>
|
||||
)}
|
||||
</Td>
|
||||
<Td dataLabel={t`First name`}>{accessRecord.first_name}</Td>
|
||||
|
||||
@ -12,10 +12,10 @@ function UserRolesListItem({ role, detailUrl, onSelect }) {
|
||||
<Td id={labelId} dataLabel={t`Name`}>
|
||||
{role.summary_fields.resource_name ? (
|
||||
<Link to={`${detailUrl}`} id={labelId}>
|
||||
{role.summary_fields.resource_name}
|
||||
<b>{role.summary_fields.resource_name}</b>
|
||||
</Link>
|
||||
) : (
|
||||
t`System`
|
||||
<b>{t`System`}</b>
|
||||
)}
|
||||
</Td>
|
||||
<Td dataLabel={t`Type`}>
|
||||
|
||||
@ -16,7 +16,9 @@ function UserTeamListItem({ team, isSelected, onSelect, rowIndex }) {
|
||||
}}
|
||||
/>
|
||||
<Td id={`team-${team.id}`} dataLabel={t`Name`}>
|
||||
<Link to={`/teams/${team.id}/details`}>{team.name}</Link>
|
||||
<Link to={`/teams/${team.id}/details`}>
|
||||
<b>{team.name}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<Td dataLabel={t`Organization`}>
|
||||
{team.summary_fields.organization ? (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user