mirror of
https://github.com/apache/superset.git
synced 2026-05-07 08:54:23 +00:00
Show "Range Filter" by default (#4604)
* Show Range Filter by default * Auto show brush * Backwards compat * Small fix
This commit is contained in:
committed by
Maxime Beauchemin
parent
3371c8bd5c
commit
86a03d1dc8
@@ -1261,10 +1261,16 @@ export const controls = {
|
||||
},
|
||||
|
||||
show_brush: {
|
||||
type: 'CheckboxControl',
|
||||
label: t('Range Filter'),
|
||||
type: 'SelectControl',
|
||||
label: t('Show Range Filter'),
|
||||
renderTrigger: true,
|
||||
default: false,
|
||||
clearable: false,
|
||||
default: 'auto',
|
||||
choices: [
|
||||
['yes', 'Yes'],
|
||||
['no', 'No'],
|
||||
['auto', 'Auto'],
|
||||
],
|
||||
description: t('Whether to display the time range interactive selector'),
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user