You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/04/06 22:46:41 UTC

[incubator-superset] branch master updated: [explore] set control default for *showminmax = false (#4766)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 59cabe7  [explore] set control default for *showminmax = false (#4766)
59cabe7 is described below

commit 59cabe7d8f5bde99e69a0c838bb04fc3f01cfd24
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Fri Apr 6 15:46:38 2018 -0700

    [explore] set control default for *showminmax = false (#4766)
    
    Let's make the defaults less crowded on the axes by not showing the min
    and max values on the axes (bounds)
---
 superset/assets/javascripts/explore/stores/controls.jsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset/assets/javascripts/explore/stores/controls.jsx b/superset/assets/javascripts/explore/stores/controls.jsx
index 72baf1f..65dd2f6 100644
--- a/superset/assets/javascripts/explore/stores/controls.jsx
+++ b/superset/assets/javascripts/explore/stores/controls.jsx
@@ -1399,7 +1399,7 @@ export const controls = {
     type: 'CheckboxControl',
     label: t('X bounds'),
     renderTrigger: true,
-    default: true,
+    default: false,
     description: t('Whether to display the min and max values of the X axis'),
   },
 
@@ -1407,7 +1407,7 @@ export const controls = {
     type: 'CheckboxControl',
     label: t('Y bounds'),
     renderTrigger: true,
-    default: true,
+    default: false,
     description: t('Whether to display the min and max values of the Y axis'),
   },
 

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.