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
commit 691dbdcbd8
4 changed files with 6 additions and 2 deletions

View File

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

View File

@ -87,6 +87,7 @@
.WorkflowChart-detailsLink {
fill: @default-link;
cursor: pointer;
font-size: 10px;
}
.WorkflowChart-incompleteIcon {
color: @default-warning;

View File

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

View File

@ -124,6 +124,9 @@
}
.WorkflowMaker-formLists {
margin-bottom: 20px;
.SmartSearch-searchTermContainer {
width: 100%;
}
}
.WorkflowMaker-formTitle {
display: flex;