mirror of
https://github.com/ansible/awx.git
synced 2026-04-06 18:49:21 -02:30
Wrap status label in a div so that it doesn't vertically stretch with it's parent.
This commit is contained in:
@@ -76,12 +76,12 @@ function WorkflowApprovalListItem({
|
|||||||
/>
|
/>
|
||||||
<DataListItemCells
|
<DataListItemCells
|
||||||
dataListCells={[
|
dataListCells={[
|
||||||
<DataListCell key="title" id={labelId}>
|
<DataListCell key="title">
|
||||||
<Link to={`${detailUrl}`}>
|
<Link to={`${detailUrl}`}>
|
||||||
<b>{workflowApproval.name}</b>
|
<b>{workflowApproval.name}</b>
|
||||||
</Link>
|
</Link>
|
||||||
</DataListCell>,
|
</DataListCell>,
|
||||||
<DataListCell key="job" id={labelId}>
|
<DataListCell key="job">
|
||||||
<>
|
<>
|
||||||
<JobLabel>{i18n._(t`Job`)}</JobLabel>
|
<JobLabel>{i18n._(t`Job`)}</JobLabel>
|
||||||
{workflowJob && workflowJob?.id ? (
|
{workflowJob && workflowJob?.id ? (
|
||||||
@@ -93,7 +93,9 @@ function WorkflowApprovalListItem({
|
|||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
</DataListCell>,
|
</DataListCell>,
|
||||||
<StatusCell key="status">{getStatus()}</StatusCell>,
|
<StatusCell key="status">
|
||||||
|
<div>{getStatus()}</div>
|
||||||
|
</StatusCell>,
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</DataListItemRow>
|
</DataListItemRow>
|
||||||
|
|||||||
Reference in New Issue
Block a user