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