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