From 2ce09d0dcc63c887899cee44a841e9f84a779d59 Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Wed, 16 Jun 2021 13:11:49 -0400 Subject: [PATCH] adds job id to job name in job list delete modal --- awx/ui_next/src/components/JobList/JobList.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/awx/ui_next/src/components/JobList/JobList.jsx b/awx/ui_next/src/components/JobList/JobList.jsx index ad4f094204..07702628c3 100644 --- a/awx/ui_next/src/components/JobList/JobList.jsx +++ b/awx/ui_next/src/components/JobList/JobList.jsx @@ -235,7 +235,10 @@ function JobList({ defaultParams, showTypeColumn = false }) { { + item.name = `${item.id} - ${item.name}`; + return item; + })} pluralizedItemName={t`Jobs`} cannotDelete={item => isJobRunning(item.status) ||