From 8fe1f8fb3f0d3e0394ef93c6c2cbb484cf5969c9 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 7 Feb 2018 14:34:14 -0800 Subject: [PATCH] Set default row_limit to 50k (#4372) --- superset/assets/javascripts/explore/stores/controls.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/assets/javascripts/explore/stores/controls.jsx b/superset/assets/javascripts/explore/stores/controls.jsx index dd0c6bc640..8e3420bd81 100644 --- a/superset/assets/javascripts/explore/stores/controls.jsx +++ b/superset/assets/javascripts/explore/stores/controls.jsx @@ -852,7 +852,7 @@ export const controls = { freeForm: true, label: t('Row limit'), validators: [v.integer], - default: null, + default: 50000, choices: formatSelectOptions(ROW_LIMIT_OPTIONS), },