mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 12:20:45 -03:30
Small style update
Small style update to make a bit more consistent.
This commit is contained in:
parent
e4c85a5790
commit
f309054637
@ -26,7 +26,9 @@ function ApplicationTokenListItem({
|
||||
dataLabel={t`Selected`}
|
||||
/>
|
||||
<Td dataLabel={t`Name`}>
|
||||
<Link to={detailUrl}>{token.summary_fields.user.username}</Link>
|
||||
<Link to={detailUrl}>
|
||||
<b>{token.summary_fields.user.username}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<Td dataLabel={t`Scope`}>{toTitleCase(token.scope)}</Td>
|
||||
<Td dataLabel={t`Expires`}>{formatDateString(token.expires)}</Td>
|
||||
|
||||
@ -10,7 +10,9 @@ function ExecutionEnvironmentTemplateListItem({ template, detailUrl }) {
|
||||
ouiaId={`template-row-${template.id}`}
|
||||
>
|
||||
<Td dataLabel={t`Name`}>
|
||||
<Link to={`${detailUrl}`}>{template.name}</Link>
|
||||
<Link to={`${detailUrl}`}>
|
||||
<b>{template.name}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<Td dataLabel={t`Type`}>
|
||||
{template.type === 'job_template'
|
||||
|
||||
@ -35,7 +35,7 @@ function InventoryHostGroupItem({
|
||||
/>
|
||||
<Td id={labelId} dataLabel={t`Name`}>
|
||||
<Link to={`${detailUrl}`} id={labelId}>
|
||||
{group.name}
|
||||
<b>{group.name}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<ActionsTd dataLabel={t`Actions`} gridColumns="auto 40px">
|
||||
|
||||
@ -31,7 +31,9 @@ function SmartInventoryHostListItem({
|
||||
}}
|
||||
/>
|
||||
<Td dataLabel={t`Name`}>
|
||||
<Link to={`${detailUrl}`}>{host.name}</Link>
|
||||
<Link to={`${detailUrl}`}>
|
||||
<b>{host.name}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<Td dataLabel={t`Recent jobs`}>
|
||||
<Sparkline jobs={recentPlaybookJobs} />
|
||||
|
||||
@ -14,7 +14,9 @@ function OrganizationExecEnvListItem({ executionEnvironment, detailUrl }) {
|
||||
ouiaId={`ee-row-${executionEnvironment.id}`}
|
||||
>
|
||||
<Td dataLabel={t`Name`}>
|
||||
<Link to={`${detailUrl}`}>{executionEnvironment.name}</Link>
|
||||
<Link to={`${detailUrl}`}>
|
||||
<b>{executionEnvironment.name}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<Td dataLabel={t`Image`}>{executionEnvironment.image}</Td>
|
||||
</Tr>
|
||||
|
||||
@ -12,7 +12,9 @@ function OrganizationTeamListItem({ team, detailUrl }) {
|
||||
return (
|
||||
<Tr id={`team-row-${team.id}`} ouiaId={`team-row-${team.id}`}>
|
||||
<Td dataLabel={t`Name`}>
|
||||
<Link to={`${detailUrl}/details`}>{team.name}</Link>
|
||||
<Link to={`${detailUrl}/details`}>
|
||||
<b>{team.name}</b>
|
||||
</Link>
|
||||
</Td>
|
||||
<ActionsTd dataLabel={t`Actions`}>
|
||||
<ActionItem
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user