mirror of
https://github.com/ansible/awx.git
synced 2026-03-25 12:55:04 -02:30
Fixes display of wf node details link in FF by adding height and width
This commit is contained in:
@@ -1053,6 +1053,8 @@ export default ['$state','moment', '$timeout', '$window', '$filter', 'Rest', 'Ge
|
|||||||
thisNode.append("foreignObject")
|
thisNode.append("foreignObject")
|
||||||
.attr("x", nodeW - 45)
|
.attr("x", nodeW - 45)
|
||||||
.attr("y", nodeH - 15)
|
.attr("y", nodeH - 15)
|
||||||
|
.attr("height", "15px")
|
||||||
|
.attr("width", "40px")
|
||||||
.attr("dy", ".35em")
|
.attr("dy", ".35em")
|
||||||
.attr("class", "WorkflowChart-detailsLink")
|
.attr("class", "WorkflowChart-detailsLink")
|
||||||
.style("display", function(d){ return d.job && d.job.status && d.job.id ? null : "none"; })
|
.style("display", function(d){ return d.job && d.job.status && d.job.id ? null : "none"; })
|
||||||
|
|||||||
Reference in New Issue
Block a user