Details
-
Task
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
-
2
-
Iteration Xiaolongbao, Iteration Yuca
Description
if either null or undefined, should remove all the field_type values in the finalizing step. this is currently done in the js land:
if (type.name === 'Null' || type.name === 'Undefined') { |
delete type.values;
|
type.unique = type.count === 0 ? 0 : 1; |
type.has_duplicates = type.count > 1; |
}
|