Merge pull request #5559 from mabashian/workflow-audit-items

Fix workflow audit items
This commit is contained in:
Michael Abashian
2017-02-27 09:40:41 -05:00
committed by GitHub
4 changed files with 6 additions and 2 deletions

View File

@@ -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)) {

View File

@@ -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;

View File

@@ -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")

View File

@@ -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;