Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
https://github.com/apache/atlas/blob/master/dashboardv2/public/js/utils/Enums.js has hard coded values for min and max values for double and float :
"float": { min: 1.4E-45, max: 3.4028235E38 }, "double": { min: 4.9E-324, max: 1.7976931348623157E308 }
Hence UI doesn't allow negative values at all in faceted search.
Values should be -3.4028235E38 and -1.7976931348623157E308 for min value of float and double respectively.