Commit 15edbaaf by Rashid Khan

closes #515

parent 98c15da1
...@@ -36,7 +36,7 @@ function (angular, _, config) { ...@@ -36,7 +36,7 @@ function (angular, _, config) {
var fields = []; var fields = [];
_.each(m, function(types) { _.each(m, function(types) {
_.each(types, function(v) { _.each(types, function(v) {
fields = _.union(fields,_.keys(v)); fields = _.without(_.union(fields,_.keys(v)),'_all','_source');
}); });
}); });
return fields; return fields;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment