Repository: atlas
Updated Branches:
  refs/heads/branch-0.8 3b9b9e888 -> 38dcf2e8b


ATLAS-2423 : Min values for double and float

Signed-off-by: nixonrodrigues <ni...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/38dcf2e8
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/38dcf2e8
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/38dcf2e8

Branch: refs/heads/branch-0.8
Commit: 38dcf2e8b07bba7448ea69b43f2e1cda1036ade4
Parents: 3b9b9e8
Author: Sharmadha Sainath <ssain...@hortonworks.com>
Authored: Tue Jan 30 10:08:07 2018 +0530
Committer: nixonrodrigues <ni...@apache.org>
Committed: Tue Jan 30 15:03:15 2018 +0530

----------------------------------------------------------------------
 dashboardv2/public/js/utils/Enums.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/38dcf2e8/dashboardv2/public/js/utils/Enums.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/utils/Enums.js 
b/dashboardv2/public/js/utils/Enums.js
index c1531e8..a7b9a8b 100644
--- a/dashboardv2/public/js/utils/Enums.js
+++ b/dashboardv2/public/js/utils/Enums.js
@@ -91,11 +91,11 @@ define(['require'], function(require) {
             max: 9223372036854775807
         },
         "float": {
-            min: 1.4E-45,
+            min: -3.4028235E38,
             max: 3.4028235E38
         },
         "double": {
-            min: 4.9E-324,
+            min: -1.7976931348623157E308,
             max: 1.7976931348623157E308
         }
       }

Reply via email to