mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 19:10:07 -03:30
Merge pull request #5559 from mabashian/workflow-audit-items
Fix workflow audit items
This commit is contained in:
commit
691dbdcbd8
@ -17,7 +17,7 @@ class DjangoSearchModel {
|
||||
}
|
||||
this.name = name;
|
||||
this.searchExamples = [];
|
||||
this.related = _.map(relatedSearchFields, trimRelated);
|
||||
this.related = _.uniq(_.map(relatedSearchFields, trimRelated));
|
||||
// Remove "object" type fields from this list
|
||||
for (var key in baseFields) {
|
||||
if (baseFields.hasOwnProperty(key)) {
|
||||
|
||||
@ -87,6 +87,7 @@
|
||||
.WorkflowChart-detailsLink {
|
||||
fill: @default-link;
|
||||
cursor: pointer;
|
||||
font-size: 10px;
|
||||
}
|
||||
.WorkflowChart-incompleteIcon {
|
||||
color: @default-warning;
|
||||
|
||||
@ -358,7 +358,7 @@ export default [ '$state','moment', '$timeout', '$window',
|
||||
}
|
||||
});
|
||||
thisNode.append("text")
|
||||
.attr("x", nodeW - 50)
|
||||
.attr("x", nodeW - 45)
|
||||
.attr("y", nodeH - 10)
|
||||
.attr("dy", ".35em")
|
||||
.attr("class", "WorkflowChart-detailsLink")
|
||||
|
||||
@ -124,6 +124,9 @@
|
||||
}
|
||||
.WorkflowMaker-formLists {
|
||||
margin-bottom: 20px;
|
||||
.SmartSearch-searchTermContainer {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.WorkflowMaker-formTitle {
|
||||
display: flex;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user