mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -03:30
Add job id to job details screen
Add job id to job details screen See: https://github.com/ansible/awx/issues/10786
This commit is contained in:
parent
dae3f1a164
commit
97a4122ceb
@ -120,6 +120,7 @@ function JobDetail({ job }) {
|
||||
return (
|
||||
<CardBody>
|
||||
<DetailList>
|
||||
<Detail label={t`Job ID`} value={job.id} />
|
||||
<Detail
|
||||
fullWidth={Boolean(job.job_explanation)}
|
||||
label={t`Status`}
|
||||
|
||||
@ -46,6 +46,7 @@ describe('<JobDetail />', () => {
|
||||
);
|
||||
|
||||
// StatusIcon adds visibly hidden accessibility text " successful "
|
||||
assertDetail('Job ID', '2');
|
||||
assertDetail('Status', ' successful Successful');
|
||||
assertDetail('Started', '8/8/2019, 7:24:18 PM');
|
||||
assertDetail('Finished', '8/8/2019, 7:24:50 PM');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user