Rashid Khan hace 12 años
padre
commit
15edbaaf31
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/app/services/fields.js

+ 1 - 1
src/app/services/fields.js

@@ -36,7 +36,7 @@ function (angular, _, config) {
       var fields = [];
       _.each(m, function(types) {
         _.each(types, function(v) {
-          fields = _.union(fields,_.keys(v));
+          fields = _.without(_.union(fields,_.keys(v)),'_all','_source');
         });
       });
       return fields;