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