Since inception, mapped fields have been hidden in the reporter, the
logic being that showing them shows too much (in particular, a circular
reference back to ourselves), and is therefore confusing.
However, not showing them means we have two options:
1) Don't use those fields in the reporter.
2) Add a second, non-mapped field just for the reporter.
These options both seem less than ideal, so for now, just let them
show up, and let the user sort it out.
Signed-off-by: Dan Wells <dbw2@calvin.edu>
var key = link_fields[i].getAttribute('key');
var reltype = link_fields[i].getAttribute('reltype');
- if (map) continue;
+ // We could give up here, do something smart (TBD) or
+ // let the user deal with the complexity manually
+ //
+ // For now, option #3
+ //if (map) continue;
var pathList = [];
findAncestorStack( item, 'treeitem', pathList );