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