Add source WF label to job details template

* Change label from "Parent WF" to "Source WF"
* Fix WF job result Firefox responsive style bugs
This commit is contained in:
Marliana Lara
2018-11-06 22:43:44 -05:00
parent 1bed5d4af2
commit ebc3dbe7b6
10 changed files with 34 additions and 11 deletions

View File

@@ -120,10 +120,12 @@ function getSourceWorkflowJobDetails () {
return null;
}
const label = strings.get('labels.SOURCE_WORKFLOW_JOB');
const value = sourceWorkflowJob.name;
const link = `/#/workflows/${sourceWorkflowJob.id}`;
const tooltip = strings.get('tooltips.SOURCE_WORKFLOW_JOB');
return { link, tooltip };
return { label, value, link, tooltip };
}
function getSliceJobDetails () {