mirror of
https://github.com/ansible/awx.git
synced 2026-03-08 21:19:26 -02:30
Merge pull request #12098 from nixocio/ui_work_flow
Fix broken job WFJT details when related JT is deleted
This commit is contained in:
@@ -153,7 +153,9 @@ function WorkflowNodeHelp({ node }) {
|
||||
<dt>
|
||||
<b>{t`Resource Name`}</b>
|
||||
</dt>
|
||||
<dd id="workflow-node-help-name">{unifiedJobTemplate.name}</dd>
|
||||
<dd id="workflow-node-help-name">
|
||||
{unifiedJobTemplate?.name || t`Deleted`}
|
||||
</dd>
|
||||
<dt>
|
||||
<b>{t`Type`}</b>
|
||||
</dt>
|
||||
@@ -187,7 +189,9 @@ function WorkflowNodeHelp({ node }) {
|
||||
<dt>
|
||||
<b>{t`Resource Name`}</b>
|
||||
</dt>
|
||||
<dd id="workflow-node-help-name">{unifiedJobTemplate.name}</dd>
|
||||
<dd id="workflow-node-help-name">
|
||||
{unifiedJobTemplate?.name || t`Deleted`}
|
||||
</dd>
|
||||
<dt>
|
||||
<b>{t`Type`}</b>
|
||||
</dt>
|
||||
|
||||
Reference in New Issue
Block a user